I have written a small application where our service employees can set icons themselves. I thought it would be quite simple:
Here is a list of the icons I found on Teleriks Site:
https://www.telerik.com/design-system/docs/foundation/iconography/icon-list/
And I have written a guide on how to convert the names to camel case so that
...Enum.TryParse(typeof(FontIcon), function.FontIcon, out font_icon);
works.
In function.FontIcon, the corresponding string is stored. And now a message came back saying:
non-recurrence -> NonRecurrence
is not being displayed. I have checked and indeed, it is not present in the Telerik.FontIcon class.
Is there another source that could be referenced where the icon representation and the text are consistent? Yes I could write a small Page to create a list of all components. But I think it is worth mentioning this issue here. :-) Maybe you could fix the page on the documentation.
I ran in this "problem" using ContextMenuItem
Here is a list of the icons I found on Teleriks Site:
https://www.telerik.com/design-system/docs/foundation/iconography/icon-list/
And I have written a guide on how to convert the names to camel case so that
...Enum.TryParse(typeof(FontIcon), function.FontIcon, out font_icon);
works.
In function.FontIcon, the corresponding string is stored. And now a message came back saying:
non-recurrence -> NonRecurrence
is not being displayed. I have checked and indeed, it is not present in the Telerik.FontIcon class.
Is there another source that could be referenced where the icon representation and the text are consistent? Yes I could write a small Page to create a list of all components. But I think it is worth mentioning this issue here. :-) Maybe you could fix the page on the documentation.
I ran in this "problem" using ContextMenuItem