Skip to content

Commit 1a40a75

Browse files
authored
Merge branch '25_2' into issue-1702_25_2
2 parents 95c4a54 + eeee8a1 commit 1a40a75

File tree

68 files changed

+463
-228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+463
-228
lines changed

apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
[startDayHour]="9"
1010
[height]="590"
1111
>
12-
<dxi-resource
12+
<dxi-scheduler-resource
1313
fieldExpr="priorityId"
1414
label="Priority"
1515
[dataSource]="priorities"
16+
icon="tags"
1617
>
17-
</dxi-resource>
18+
</dxi-scheduler-resource>
1819
</dx-scheduler>
1920
<dx-speed-dial-action
2021
#speedDialAction

apps/demos/Demos/Scheduler/Adaptability/React/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const App = () => {
3333
dataSource={priorities}
3434
fieldExpr="priorityId"
3535
label="Priority"
36+
icon="tags"
3637
/>
3738
</Scheduler>
3839
<SpeedDialAction

apps/demos/Demos/Scheduler/Adaptability/ReactJs/App.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ const App = () => {
2929
dataSource={priorities}
3030
fieldExpr="priorityId"
3131
label="Priority"
32+
icon="tags"
3233
/>
3334
</Scheduler>
3435
<SpeedDialAction

apps/demos/Demos/Scheduler/Adaptability/Vue/App.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
:data-source="priorities"
1717
field-expr="priorityId"
1818
label="Priority"
19+
icon="tags"
1920
/>
2021
</DxScheduler>
2122
<DxSpeedDialAction

apps/demos/Demos/Scheduler/Adaptability/jQuery/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ $(() => {
1212
fieldExpr: 'priorityId',
1313
dataSource: priorities,
1414
label: 'Priority',
15+
icon: 'tags',
1516
}],
1617
}).dxScheduler('instance');
1718

apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,20 @@
77
[startDayHour]="9"
88
[height]="600"
99
>
10-
<dxi-resource
10+
<dxi-scheduler-resource
1111
fieldExpr="assigneeId"
1212
label="Assignee"
1313
[allowMultiple]="true"
1414
[dataSource]="assignees"
1515
[useColorAsDefault]="true"
16+
icon="user"
1617
>
17-
</dxi-resource>
18-
<dxi-resource
18+
</dxi-scheduler-resource>
19+
<dxi-scheduler-resource
1920
fieldExpr="priorityId"
2021
label="Priority"
2122
[dataSource]="priorities"
23+
icon="tags"
2224
>
23-
</dxi-resource>
25+
</dxi-scheduler-resource>
2426
</dx-scheduler>

apps/demos/Demos/Scheduler/Agenda/React/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ const App = () => (
2525
fieldExpr="assigneeId"
2626
label="Assignee"
2727
useColorAsDefault={true}
28+
icon="user"
2829
/>
2930
<Resource
3031
dataSource={priorities}
3132
fieldExpr="priorityId"
3233
label="Priority"
34+
icon="tags"
3335
/>
3436
</Scheduler>
3537
);

apps/demos/Demos/Scheduler/Agenda/ReactJs/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ const App = () => (
2525
fieldExpr="assigneeId"
2626
label="Assignee"
2727
useColorAsDefault={true}
28+
icon="user"
2829
/>
2930
<Resource
3031
dataSource={priorities}
3132
fieldExpr="priorityId"
3233
label="Priority"
34+
icon="tags"
3335
/>
3436
</Scheduler>
3537
);

apps/demos/Demos/Scheduler/Agenda/Vue/App.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@
1414
:allow-multiple="true"
1515
field-expr="assigneeId"
1616
label="Assignee"
17+
icon="user"
1718
/>
1819
<DxResource
1920
:data-source="priorities"
2021
field-expr="priorityId"
2122
label="Priority"
23+
icon="tags"
2224
/>
2325
</DxScheduler>
2426
</template>

apps/demos/Demos/Scheduler/Agenda/jQuery/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ $(() => {
1616
dataSource: assignees,
1717
label: 'Assignee',
1818
useColorAsDefault: true,
19+
icon: 'user',
1920
}, {
2021
fieldExpr: 'priorityId',
2122
dataSource: priorities,
2223
label: 'Priority',
24+
icon: 'tags',
2325
}],
2426
height: 600,
2527
});

0 commit comments

Comments
 (0)