Skip to content

Commit 8897453

Browse files
radkostanevjivanova
authored andcommitted
chore(icons): abide code style when passing icons
1 parent a94c98c commit 8897453

File tree

150 files changed

+554
-547
lines changed

Some content is hidden

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

150 files changed

+554
-547
lines changed

_contentTemplates/grid/export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<TelerikGrid Data="@GridData" AutoGenerateColumns="true" Pageable="true">
2828
<GridToolBarTemplate>
2929
<GridCommandButton OnClick="@ShowLoadingSign" Command="ExcelExport" Icon="@FontIcon.FileExcel">Export to Excel</GridCommandButton>
30-
<GridCommandButton OnClick="@ShowLoadingSign" Command="CsvExport" Icon=FontIcon.FileCsv>Export to CSV</GridCommandButton>
30+
<GridCommandButton OnClick="@ShowLoadingSign" Command="CsvExport" Icon="@FontIcon.FileCsv">Export to CSV</GridCommandButton>
3131
</GridToolBarTemplate>
3232
<GridExport>
3333
<GridExcelExport AllPages="true" FileName="telerik-grid-export" />

common-features/loading-sign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ This sample shows only an indicator for the initial data load, only the DELETE o
9898
OnDelete="@DeleteHandlerWithDelay">
9999
<GridColumns>
100100
<GridCommandColumn>
101-
<GridCommandButton Command="Delete" Icon=FontIcon.Trash>Delete</GridCommandButton>
101+
<GridCommandButton Command="Delete" Icon="@FontIcon.Trash">Delete</GridCommandButton>
102102
</GridCommandColumn>
103103
</GridColumns>
104104
</TelerikGrid>

components/autocomplete/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The AutoComplete component allows you to change what is rendered in its items, h
6060
</FooterTemplate>
6161
<NoDataTemplate>
6262
<div class="no-data-template">
63-
<TelerikFontIcon Class="k-icon k-icon-lg" Icon=FontIcon.FilesError></TelerikFontIcon>
63+
<TelerikFontIcon Class="k-icon k-icon-lg" Icon="@FontIcon.FilesError"></TelerikFontIcon>
6464
<p>No items available</p>
6565
</div>
6666
</NoDataTemplate>

components/avatar/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If the `Type` parameter value is not matching the type of the content, you will
4141
4242
<TelerikAvatar Type="AvatarType.Icon">
4343
44-
<TelerikFontIcon Icon=FontIcon.User></TelerikIcon>
44+
<TelerikFontIcon Icon="@FontIcon.User"></TelerikIcon>
4545
4646
</TelerikAvatar>
4747
````

components/breadcrumb/separator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Furthermore, you can take full control over the Separator rendering with the [Se
2323
````CSHTML
2424
@* This example demonstrates how to change the default Telerik icon used as a Breadcrumb Separator*@
2525
26-
<TelerikBreadcrumb SeparatorIcon=FontIcon.CaretDoubleAltRight
26+
<TelerikBreadcrumb SeparatorIcon="@FontIcon.CaretDoubleAltRight"
2727
Data="@Items">
2828
</TelerikBreadcrumb>
2929

components/calendar/templates/decade-cell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The template receives the `DateTime` corresponding to its cell.
2525
<DecadeCellTemplate>
2626
@if (yearsWithEvents.Contains(context.Year))
2727
{
28-
<TelerikFontIcon Icon="FontIcon.ExclamationCircle"></TelerikFontIcon>
28+
<TelerikFontIcon Icon="@FontIcon.ExclamationCircle"></TelerikFontIcon>
2929
}
3030
@context.Year
3131
</DecadeCellTemplate>

components/calendar/templates/header-template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ The example below is using a [Calendar reference and methods]({%slug components/
2020
<TelerikCalendar @bind-Value="@CalendarValue" @bind-Date="@CalendarDate">
2121
<HeaderTemplate>
2222
23-
<TelerikButton OnClick="@GoToPrevious" Icon="FontIcon.ArrowLeft" Title="Go to Previous Month"></TelerikButton>
23+
<TelerikButton OnClick="@GoToPrevious" Icon="@FontIcon.ArrowLeft" Title="Go to Previous Month"></TelerikButton>
2424
<TelerikButton OnClick="@SelectToday">Today</TelerikButton>
25-
<TelerikButton OnClick="@GoToNext" Icon="FontIcon.ArrowRight" Title="Go to Next Month"></TelerikButton>
25+
<TelerikButton OnClick="@GoToNext" Icon="@FontIcon.ArrowRight" Title="Go to Next Month"></TelerikButton>
2626
27-
<TelerikFontIcon Icon="FontIcon.ParameterDateTime" /> @CalendarValue.ToShortDateString()
27+
<TelerikFontIcon Icon="@FontIcon.ParameterDateTime" /> @CalendarValue.ToShortDateString()
2828
2929
</HeaderTemplate>
3030
</TelerikCalendar>

components/calendar/templates/year-cell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The template receives the `DateTime` corresponding to its cell.
2525
<YearCellTemplate>
2626
@if (monthsWithEvents.Contains(context.Month))
2727
{
28-
<TelerikFontIcon Icon="FontIcon.RoundCorners"></TelerikFontIcon>
28+
<TelerikFontIcon Icon="@FontIcon.RoundCorners"></TelerikFontIcon>
2929
}
3030
@context.ToString("MMM")
3131
</YearCellTemplate>

components/card/image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Every Blazor Card can have a dedicated area to render a card image that will fil
2828
<CardImage Src="https://docs.telerik.com/blazor-ui/components/card/images/rila_lakes.jpg"></CardImage>
2929
3030
<CardActions Layout="CardActionsLayout.Stretch">
31-
<TelerikButton Class="k-flat" Icon="FontIcon.HeartOutline" Title="Like"></TelerikButton>
32-
<TelerikButton Class="k-flat" Icon="SvgIcon.Comment" Title="Comment"></TelerikButton>
33-
<TelerikButton Class="k-flat" Icon="SvgIcon.Share" Title="Share"></TelerikButton>
31+
<TelerikButton Class="k-flat" Icon="@FontIcon.HeartOutline" Title="Like"></TelerikButton>
32+
<TelerikButton Class="k-flat" Icon="@SvgIcon.Comment" Title="Comment"></TelerikButton>
33+
<TelerikButton Class="k-flat" Icon="@SvgIcon.Share" Title="Share"></TelerikButton>
3434
</CardActions>
3535
</TelerikCard>
3636
````

components/card/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ The below snippet demonstrates the setup of a Card component with all building b
4343
</p>
4444
</CardBody>
4545
<CardActions Layout="@CardActionsLayout.Stretch">
46-
<TelerikButton Class="k-flat" Icon="FontIcon.HeartOutline" Title="Like"></TelerikButton>
47-
<TelerikButton Class="k-flat" Icon="SvgIcon.Comment" Title="Comment"></TelerikButton>
46+
<TelerikButton Class="k-flat" Icon="@FontIcon.HeartOutline" Title="Like"></TelerikButton>
47+
<TelerikButton Class="k-flat" Icon="@SvgIcon.Comment" Title="Comment"></TelerikButton>
4848
<TelerikButton Class="k-flat">Read More</TelerikButton>
4949
</CardActions>
5050
<CardFooter>

components/combobox/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The ComboBox component allows you to change what is rendered in its items, heade
6161
</FooterTemplate>
6262
<NoDataTemplate>
6363
<div class="no-data-template">
64-
<TelerikFontIcon Class="k-icon k-icon-lg" Icon="FontIcon.FilesError"></TelerikFontIcon>
64+
<TelerikFontIcon Class="k-icon k-icon-lg" Icon="@FontIcon.FilesError"></TelerikFontIcon>
6565
<p>No items available</p>
6666
</div>
6767
</NoDataTemplate>

components/contextmenu/integration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,14 @@ In this example, the context menu is used to select/deselect items, put an item
196196
SelectionMode="@GridSelectionMode.Multiple"
197197
@bind-SelectedItems="@SelectedItems">
198198
<GridToolBarTemplate>
199-
<GridCommandButton Command="Add" Icon=FontIcon.Plus>Add Employee</GridCommandButton>
199+
<GridCommandButton Command="Add" Icon="@FontIcon.Plus">Add Employee</GridCommandButton>
200200
</GridToolBarTemplate>
201201
<GridColumns>
202202
<GridColumn Field=@nameof(SampleData.ID) Editable="false" />
203203
<GridColumn Field=@nameof(SampleData.Name) />
204204
<GridCommandColumn>
205-
<GridCommandButton Command="Save" Icon=FontIcon.Save ShowInEdit="true">Update</GridCommandButton>
206-
<GridCommandButton Command="Cancel" Icon=FontIcon.Cancel ShowInEdit="true">Cancel</GridCommandButton>
205+
<GridCommandButton Command="Save" Icon="@FontIcon.Save" ShowInEdit="true">Update</GridCommandButton>
206+
<GridCommandButton Command="Cancel" Icon="@FontIcon.Cancel" ShowInEdit="true">Cancel</GridCommandButton>
207207
</GridCommandColumn>
208208
</GridColumns>
209209
</TelerikGrid>
@@ -297,9 +297,9 @@ In this example, the context menu is used to select/deselect items, put an item
297297
// context menu items
298298
MenuItems = new List<MenuItem>()
299299
{
300-
new MenuItem(){ Text = "Select", Icon=FontIcon.CheckboxChecked, CommandName="ToggleSelect" },
301-
new MenuItem(){ Text = "Edit", Icon=FontIcon.Pencil, CommandName="BeginEdit" },
302-
new MenuItem(){ Text = "Delete", Icon=FontIcon.Trash, Action = DeleteItem }
300+
new MenuItem(){ Text = "Select", Icon = FontIcon.CheckboxChecked, CommandName="ToggleSelect" },
301+
new MenuItem(){ Text = "Edit", Icon = FontIcon.Pencil, CommandName="BeginEdit" },
302+
new MenuItem(){ Text = "Delete", Icon = FontIcon.Trash, Action = DeleteItem }
303303
};
304304
305305
// generate data for the grid

components/datepicker/header-template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ The example below is using a [DatePicker reference and methods]({%slug component
2121
<HeaderTemplate>
2222
2323
<span>
24-
<TelerikButton OnClick="@GoToPrevious" Icon=FontIcon.ArrowLeft Title="Go to Previous Month"></TelerikButton>
24+
<TelerikButton OnClick="@GoToPrevious" Icon="@FontIcon.ArrowLeft" Title="Go to Previous Month"></TelerikButton>
2525
<TelerikButton OnClick="@SelectToday">Today</TelerikButton>
26-
<TelerikButton OnClick="@GoToNext" Icon=FontIcon.ArrowRight Title="Go to Next Month"></TelerikButton>
26+
<TelerikButton OnClick="@GoToNext" Icon="@FontIcon.ArrowRight" Title="Go to Next Month"></TelerikButton>
2727
</span>
2828
<span style="padding-right: .6em;">
29-
<TelerikFontIcon Icon=FontIcon.ParameterDateTime /> @ViewDate.Month / @ViewDate.Year
29+
<TelerikFontIcon Icon="@FontIcon.ParameterDateTime" /> @ViewDate.Month / @ViewDate.Year
3030
</span>
3131
</HeaderTemplate>
3232
</TelerikDatePicker>

components/daterangepicker/header-template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ The example below is using a [DateRangePicker reference and methods]({%slug date
2626
@ref="@Picker">
2727
<HeaderTemplate>
2828
<span>
29-
<TelerikButton OnClick="@GoToPrevious" Icon=SvgIcon.ArrowLeft Title="Go to Previous Month"></TelerikButton>
29+
<TelerikButton OnClick="@GoToPrevious" Icon="@SvgIcon.ArrowLeft" Title="Go to Previous Month"></TelerikButton>
3030
<TelerikButton OnClick="@SelectToday">Today</TelerikButton>
31-
<TelerikButton OnClick="@GoToNext" Icon=SvgIcon.ArrowRight Title="Go to Next Month"></TelerikButton>
31+
<TelerikButton OnClick="@GoToNext" Icon="@SvgIcon.ArrowRight" Title="Go to Next Month"></TelerikButton>
3232
</span>
3333
<span style="padding-right: .6em;">
34-
<TelerikSvgIcon Icon=SvgIcon.ParameterDateTime /> Showing
34+
<TelerikSvgIcon Icon="@SvgIcon.ParameterDateTime" /> Showing
3535
<strong>
3636
@ViewDate.Month/@ViewDate.Year - @ViewDate.AddMonths(1).Month/@ViewDate.AddMonths(1).Year
3737
</strong>

components/drawer/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The `ExpandedChanged` event fires every time the component's state is changed -
8181
8282
@if (!Expanded)
8383
{
84-
<TelerikButton OnClick="@(() => DrawerRef.ExpandAsync())" Icon=FontIcon.Menu>Expand Drawer</TelerikButton>
84+
<TelerikButton OnClick="@(() => DrawerRef.ExpandAsync())" Icon="@FontIcon.Menu">Expand Drawer</TelerikButton>
8585
}
8686
8787
<TelerikDrawer Expanded="@Expanded"

components/drawer/mini-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To enable the mini view when the drawer is collapsed (minimized), set the `MiniM
2424
@* Click on the Toggle MiniMode button to enable or disable it. *@
2525
@* The same behavior will be observed in both Push and Overlay modes *@
2626
27-
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon=FontIcon.Menu>Toggle drawer</TelerikButton>
27+
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon="@FontIcon.Menu">Toggle drawer</TelerikButton>
2828
<TelerikButton OnClick="@(() => MiniMode = !MiniMode)">Toggle MiniMode</TelerikButton>
2929
<TelerikDrawer Data="@Data"
3030
MiniMode="@MiniMode"

components/drawer/modes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ When `Mode` is set to `Overlay`, the Drawer's navigation is on top of the conten
8686
You may want to add padding to the left of the content so that it is not overlapped by the Drawer in its MiniMode. *@
8787
8888
<div class="pl-4">
89-
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon=FontIcon.Menu>Toggle drawer</TelerikButton>
89+
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon="@FontIcon.Menu">Toggle drawer</TelerikButton>
9090
</div>
9191
<TelerikDrawer @bind-Expanded="@Expanded"
9292
Data="@Data"

components/drawer/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The <a href="https://www.telerik.com/blazor-ui/drawer" target="_blank">Blazor Dr
3232
@* This example shows the basic configuration of the Drawer and how to expand or collapse a Drawer with a click of a button. *@
3333
3434
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())"
35-
Icon=FontIcon.Menu>
35+
Icon="@FontIcon.Menu">
3636
Toggle drawer
3737
</TelerikButton>
3838
@@ -131,7 +131,7 @@ The Drawer methods are accessible through it's reference. These methods change t
131131
@* The drawer is a generic components and its reference type depends on the type of the model it is bound to. *@
132132
133133
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())"
134-
Icon=FontIcon.Menu>
134+
Icon="@FontIcon.Menu">
135135
Toggle drawer
136136
</TelerikButton>
137137

components/drawer/refresh-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In this article:
4343
@ref="@DrawerRef"
4444
@bind-SelectedItem="@SelectedItem">
4545
<DrawerContent>
46-
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon=FontIcon.Menu>Toggle drawer</TelerikButton>
46+
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon="@FontIcon.Menu">Toggle drawer</TelerikButton>
4747
<div class="m-5">
4848
Selected Item: @SelectedItem?.Text
4949
</div>

components/drawer/selection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you use the drawer for [page navigation]({%slug drawer-navigation%}), the sel
2929
@bind-SelectedItem="@selectedItem"
3030
@ref="@DrawerRef">
3131
<DrawerContent>
32-
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon=FontIcon.Menu>Toggle drawer</TelerikButton>
32+
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon="@FontIcon.Menu">Toggle drawer</TelerikButton>
3333
<div class="text-info">
3434
Content for the @selectedItem?.Text item
3535
</div>

components/drawer/templates.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This template receives a `context` argument that is of the data model type and r
2626
````CSHTML
2727
@* This example shows how to control the rendering of the items in the Drawer menu *@
2828
29-
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon=FontIcon.Menu />
29+
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon="@FontIcon.Menu" />
3030
3131
<TelerikDrawer @bind-Expanded="@Expanded"
3232
Data="@Data"
@@ -106,7 +106,7 @@ Using the `<Template>` and `<ItemTemplate>` together is not possible - the Templ
106106
<Template>
107107
@* the header *@
108108
<div>
109-
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon=FontIcon.Menu />
109+
<TelerikButton OnClick="@(() => DrawerRef.ToggleAsync())" Icon="@FontIcon.Menu" />
110110
@if (DrawerExpanded)
111111
{
112112
<div class="text-info" style="border-bottom:solid; font-weight: bold; margin-bottom: 3em; white-space:nowrap">
@@ -158,7 +158,7 @@ Using the `<Template>` and `<ItemTemplate>` together is not possible - the Templ
158158
<div style="text-align: center; margin-top: 3em; padding-top: 2em; border-top: 2px solid black; white-space:nowrap">
159159
<img src="user-avatar.png" alt="my avatar" style="border-radius: 50%; width: 50px; height: 50px;" />
160160
<br /><br />
161-
<TelerikButton Icon=FontIcon.Logout ThemeColor="primary">Log Out</TelerikButton>
161+
<TelerikButton Icon="@FontIcon.Logout" ThemeColor="primary">Log Out</TelerikButton>
162162
</div>
163163
}
164164
</Template>

components/dropdownlist/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The `ValueTemplate` exposes a `context` which represents the selected item objec
7171
</FooterTemplate>
7272
<NoDataTemplate>
7373
<div class="no-data-template">
74-
<TelerikFontIcon Class="k-icon k-icon-lg" Icon=FontIcon.FilesError></TelerikFontIcon>
74+
<TelerikFontIcon Class="k-icon k-icon-lg" Icon="@FontIcon.FilesError"></TelerikFontIcon>
7575
<p>No items available</p>
7676
</div>
7777
</NoDataTemplate>

components/editor/custom-tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ In this section you can find the following examples:
9696
<TelerikEditor @ref="@EditorRef" Tools="@Tools" @bind-Value="@TheEditorContent">
9797
<EditorCustomTools>
9898
<EditorCustomTool Name="ImportantFragment">
99-
<TelerikButton OnClick="@MarkImportant" Icon=FontIcon.Star></TelerikButton>
99+
<TelerikButton OnClick="@MarkImportant" Icon="@FontIcon.Star"></TelerikButton>
100100
</EditorCustomTool>
101101
</EditorCustomTools>
102102
</TelerikEditor>
@@ -137,7 +137,7 @@ You can call application code from the editor tools to, for example, save the cu
137137
<TelerikEditor Tools="@Tools" @bind-Value="@TheEditorContent">
138138
<EditorCustomTools>
139139
<EditorCustomTool Name="Save">
140-
<TelerikButton OnClick="@Save" Icon=FontIcon.Save />
140+
<TelerikButton OnClick="@Save" Icon="@FontIcon.Save" />
141141
</EditorCustomTool>
142142
</EditorCustomTools>
143143
</TelerikEditor>

components/gantt/dependencies/databind.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To bind a collection of dependencies to the Gantt Chart you should use the `Data
4040
FilterMode="@GanttFilterMode.FilterMenu"
4141
FilterMenuType="@FilterMenuType.Menu">
4242
<GanttToolBarTemplate>
43-
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
43+
<GanttCommandButton Command="Add" Icon="@FontIcon.Plus">Add</GanttCommandButton>
4444
</GanttToolBarTemplate>
4545
<GanttViews>
4646
<GanttWeekView></GanttWeekView>
@@ -75,8 +75,8 @@ To bind a collection of dependencies to the Gantt Chart you should use the `Data
7575
Width="100px">
7676
</GanttColumn>
7777
<GanttCommandColumn>
78-
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
79-
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
78+
<GanttCommandButton Command="Add" Icon="@FontIcon.Plus"></GanttCommandButton>
79+
<GanttCommandButton Command="Delete" Icon="@FontIcon.Trash"></GanttCommandButton>
8080
</GanttCommandColumn>
8181
</GanttColumns>
8282
</TelerikGantt>

components/gantt/dependencies/editing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ List of the available events:
4444
FilterMode="@GanttFilterMode.FilterMenu"
4545
FilterMenuType="@FilterMenuType.Menu">
4646
<GanttToolBarTemplate>
47-
<GanttCommandButton Command="Add" Icon=FontIcon.Plus>Add</GanttCommandButton>
47+
<GanttCommandButton Command="Add" Icon="@FontIcon.Plus">Add</GanttCommandButton>
4848
</GanttToolBarTemplate>
4949
<GanttViews>
5050
<GanttWeekView></GanttWeekView>
@@ -81,8 +81,8 @@ List of the available events:
8181
Width="100px">
8282
</GanttColumn>
8383
<GanttCommandColumn>
84-
<GanttCommandButton Command="Add" Icon=FontIcon.Plus></GanttCommandButton>
85-
<GanttCommandButton Command="Delete" Icon=FontIcon.Trash></GanttCommandButton>
84+
<GanttCommandButton Command="Add" Icon="@FontIcon.Plus"></GanttCommandButton>
85+
<GanttCommandButton Command="Delete" Icon="@FontIcon.Trash"></GanttCommandButton>
8686
</GanttCommandColumn>
8787
</GanttColumns>
8888
</TelerikGantt>

0 commit comments

Comments
 (0)