Hi,
I am using .net core tag helpers to display a grid with inline editing.
I am able to display Icon only commands for Edit and Delete. But I am struggling to find any documentation to customize the same behaviour for Update/Cancel
<kendo-grid name="grid" height="550" resizable="true"> <datasource page-size="100" type="DataSourceTagHelperType.Ajax" server-operation="true" name="dataSource" batch="true"> <transport> <read url="/Test/read" type="post" /> <update url="/Test/create" /> <destroy url="/Test/delete" /> <create url="/Test/create" /> </transport> <schema> <model id="Id"> <fields> <field name="FirstName"> <validation required="true" /> </field> <field name="LastName"></field> <field name="Email"></field> </fields> </model> </schema> </datasource> <sortable enabled="true" /> <filterable enabled="true" extra="false"> <operators> <string eq="Is equal to" contains="Contains" startswith="Starts with" neq="Is not equal to" /> </operators> </filterable> <pageable button-count="5" refresh="true" page-sizes="new int[] { 10,20 }" /> <editable mode="inline" /> <columns> <column width="75"> <commands> <column-command name="edit" template="#=edittemplate(data)#"> </column-command> <column-command name="destroy" template="#=deletetemplate(data)#"></column-command> </commands> </column> <column field="FirstName" title="FirstName" width="50"></column> <column field="LastName" title="LastName" width="50"></column> <column field="Email" title="Email" width="75"></column> </columns></kendo-grid>edittemplate = function (data) { var template = '<button type="button" class="k-button k-button-icon"><span class="k-icon k-i-update"></span></button>'; return template;};