Skip to content

Commit 0de3d01

Browse files
svdimitrjivanova
authored andcommitted
docs(crudicons): update crud icons
1 parent cb3e130 commit 0de3d01

File tree

68 files changed

+295
-295
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

+295
-295
lines changed

components/gantt/dependencies/types.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This section showcases both ways to define the dependency type - by using an `in
4242
FilterMode="@GanttFilterMode.FilterMenu"
4343
FilterMenuType="@FilterMenuType.Menu">
4444
<GanttToolBarTemplate>
45-
<GanttCommandButton Command="Add" Icon="add">Add</GanttCommandButton>
45+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
4646
</GanttToolBarTemplate>
4747
<GanttViews>
4848
<GanttWeekView></GanttWeekView>
@@ -77,8 +77,8 @@ This section showcases both ways to define the dependency type - by using an `in
7777
Width="100px">
7878
</GanttColumn>
7979
<GanttCommandColumn>
80-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
81-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
80+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
81+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
8282
</GanttCommandColumn>
8383
</GanttColumns>
8484
</TelerikGantt>
@@ -180,7 +180,7 @@ This section showcases both ways to define the dependency type - by using an `in
180180
FilterMode="@GanttFilterMode.FilterMenu"
181181
FilterMenuType="@FilterMenuType.Menu">
182182
<GanttToolBarTemplate>
183-
<GanttCommandButton Command="Add" Icon="add">Add</GanttCommandButton>
183+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
184184
</GanttToolBarTemplate>
185185
<GanttViews>
186186
<GanttWeekView></GanttWeekView>
@@ -215,8 +215,8 @@ This section showcases both ways to define the dependency type - by using an `in
215215
Width="100px">
216216
</GanttColumn>
217217
<GanttCommandColumn>
218-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
219-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
218+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
219+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
220220
</GanttCommandColumn>
221221
</GanttColumns>
222222
</TelerikGantt>

components/gantt/gantt-tree/columns/command.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Use a **named** context variable to avoid errors when nesting components or `Ren
7676
7777
if (task.ParentId != null)
7878
{
79-
<GridCommandButton Command="Delete" Icon="delete">Delete</GridCommandButton>
79+
<GridCommandButton Command="Delete" Icon=FontIcon.Trash>Delete</GridCommandButton>
8080
}
8181
else
8282
{
@@ -126,8 +126,8 @@ The following code example demonstrates declarations and handling of the built-i
126126
<GanttCommandColumn>
127127
<GanttCommandButton OnClick="@((args) => GetTaskDetails(args))" Icon="info-circle
128128
"></GanttCommandButton>
129-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
130-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
129+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
130+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
131131
</GanttCommandColumn>
132132
</GanttColumns>
133133
<GanttViews>

components/gantt/gantt-tree/data-binding/hierarchical-data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If there are items for a certain node, it will have an expand icon. The `HasChil
3434
FilterMode="@GanttFilterMode.FilterMenu"
3535
FilterMenuType="@FilterMenuType.Menu">
3636
<GanttToolBarTemplate>
37-
<GanttCommandButton Command="Add" Icon="add">Add</GanttCommandButton>
37+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
3838
</GanttToolBarTemplate>
3939
<GanttViews>
4040
<GanttDayView></GanttDayView>
@@ -44,8 +44,8 @@ If there are items for a certain node, it will have an expand icon. The `HasChil
4444
</GanttViews>
4545
<GanttColumns>
4646
<GanttCommandColumn>
47-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
48-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
47+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
48+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
4949
</GanttCommandColumn>
5050
<GanttColumn Field="Id"
5151
Visible="false">

components/gantt/gantt-tree/editing/incell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ It is up to the data access logic to save the data once it is changed in the dat
4242
</GanttViews>
4343
<GanttColumns>
4444
<GanttCommandColumn Width="80px">
45-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
46-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
45+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
46+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
4747
</GanttCommandColumn>
4848
<GanttColumn Field="Id"
4949
Visible="false">

components/gantt/gantt-tree/editing/inline.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ To enable Inline editing in the Gantt Tree, set its `TreeListEditMode` property
4141
</GanttViews>
4242
<GanttColumns>
4343
<GanttCommandColumn Width="120px">
44-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
45-
<GanttCommandButton Command="Edit" Icon="edit"></GanttCommandButton>
46-
<GanttCommandButton Command="Save" Icon="save" ShowInEdit="true"></GanttCommandButton>
47-
<GanttCommandButton Command="Cancel" Icon="cancel" ShowInEdit="true"></GanttCommandButton>
48-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
44+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
45+
<GanttCommandButton Command="Edit" Icon=FontIcon.Pencil></GanttCommandButton>
46+
<GanttCommandButton Command="Save" Icon=FontIcon.Save ShowInEdit="true"></GanttCommandButton>
47+
<GanttCommandButton Command="Cancel" Icon=FontIcon.Cancel ShowInEdit="true"></GanttCommandButton>
48+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
4949
</GanttCommandColumn>
5050
<GanttColumn Field="Id"
5151
Visible="false">

components/gantt/gantt-tree/editing/overview.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ You can customize the editors rendered in the Gantt Tree by providing the `Edito
7676
OnDelete="@DeleteItem"
7777
OnCreate="@CreateItem">
7878
<GanttToolBarTemplate>
79-
<GanttCommandButton Command="Add" Icon="add">Add</GanttCommandButton>
79+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
8080
</GanttToolBarTemplate>
8181
<GanttViews>
8282
<GanttDayView></GanttDayView>
@@ -106,8 +106,8 @@ You can customize the editors rendered in the Gantt Tree by providing the `Edito
106106
Width="100px">
107107
</GanttColumn>
108108
<GanttCommandColumn>
109-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
110-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
109+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
110+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
111111
</GanttCommandColumn>
112112
</GanttColumns>
113113
</TelerikGantt>
@@ -321,7 +321,7 @@ The example below shows how you can handle the events the Gantt component expose
321321
OnCreate="@CreateItem"
322322
OnEdit="@OnEditItem">
323323
<GanttToolBarTemplate>
324-
<GanttCommandButton Command="Add" Icon="add">Add</GanttCommandButton>
324+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
325325
</GanttToolBarTemplate>
326326
<GanttViews>
327327
<GanttDayView></GanttDayView>
@@ -350,8 +350,8 @@ The example below shows how you can handle the events the Gantt component expose
350350
Width="100px">
351351
</GanttColumn>
352352
<GanttCommandColumn>
353-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
354-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
353+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
354+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
355355
</GanttCommandColumn>
356356
</GanttColumns>
357357
</TelerikGantt>

components/gantt/gantt-tree/editing/popup.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ To enable PopUp editing in the Gantt Tree, set its `TreeListEditMode` property t
4646
</GanttViews>
4747
<GanttColumns>
4848
<GanttCommandColumn Width="110px">
49-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
50-
<GanttCommandButton Command="Edit" Icon="edit"></GanttCommandButton>
51-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
49+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
50+
<GanttCommandButton Command="Edit" Icon=FontIcon.Pencil></GanttCommandButton>
51+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
5252
</GanttCommandColumn>
5353
<GanttColumn Field="Id"
5454
Visible="false">
@@ -298,13 +298,13 @@ Parameter | Type | Description
298298
</GanttPopupEditFormSettings>
299299
</GanttSettings>
300300
<GanttToolBarTemplate>
301-
<GanttCommandButton Command="Add" Icon="add">Add</GanttCommandButton>
301+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
302302
</GanttToolBarTemplate>
303303
<GanttColumns>
304304
<GanttCommandColumn Width="110px">
305-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
306-
<GanttCommandButton Command="Edit" Icon="edit"></GanttCommandButton>
307-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
305+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
306+
<GanttCommandButton Command="Edit" Icon=FontIcon.Pencil></GanttCommandButton>
307+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
308308
</GanttCommandColumn>
309309
<GanttColumn Field="Title"
310310
Expandable="true"

components/gantt/gantt-tree/templates/column-header.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ By default columns display the name of the corresponding field or their `Title`
3030
</GanttViews>
3131
<GanttColumns>
3232
<GanttCommandColumn Width="80px">
33-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
34-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
33+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
34+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
3535
</GanttCommandColumn>
3636
<GanttColumn Field="Title"
3737
Expandable="true"

components/gantt/gantt-tree/templates/column.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ The example below shows how to:
3636
</GanttViews>
3737
<GanttColumns>
3838
<GanttCommandColumn Width="80px">
39-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
40-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
39+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
40+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
4141
</GanttCommandColumn>
4242
<GanttColumn Field="Title"
4343
Expandable="true"

components/gantt/gantt-tree/templates/editor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ You can data bind components in it to the current context, which is an instance
3232
</GanttViews>
3333
<GanttColumns>
3434
<GanttCommandColumn Width="80px">
35-
<GanttCommandButton Command="Add" Icon="add"></GanttCommandButton>
36-
<GanttCommandButton Command="Delete" Icon="delete"></GanttCommandButton>
35+
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
36+
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
3737
</GanttCommandColumn>
3838
<GanttColumn Field="Id"
3939
Visible="false">

0 commit comments

Comments
 (0)