Hello,
I am trying to add a custom command to my Kendo Jquery grid and it works well if I just add text. Now I want to replace the text with an icon defined in a class and it works fine as long as there is some text defined but if I remove the command name or text then I get his error:
Uncaught Error: Custom commands should have name specified
So is there a way to define a custom command and "hide" the command text/name so only the image defined in the css class is displayed?
Here is the line where I defined my custom command:
columns: [
{ command: { className: "fa fa-pencil fa-fw", click: editInformation } },
....
]