Hello,
after many sufferings with Asp.Net Mvc helpers, I've finally understood that if I define a Javascript KendoGrid i'm able to define custom command buttons without altering the grid behaviour:
As you can see I want to customize my buttons with FontAwesome, white icons.
Now the point is that I'm still not able to change the icons on the two buttons (save changes and cancel edit) that appears when creating or editing a row.
How do I handle it?
Thanks
after many sufferings with Asp.Net Mvc helpers, I've finally understood that if I define a Javascript KendoGrid i'm able to define custom command buttons without altering the grid behaviour:
"command": [
{
"name": "edit",
"buttonType": "ImageAndText",
"iconClass": "fa",
"imageClass": "fa-edit",
"text": {
"cancel": "",
"update": "",
"edit": ""
}
},
{
"name": "mydelete",
"buttonType": "ImageAndText",
"text": "",
"imageClass": "fa-trash-o",
"className": "my-delete-button",
"iconClass": "fa",
"click": function (e) {
$(e.target).confirmation('show');
}
}
]
As you can see I want to customize my buttons with FontAwesome, white icons.
Now the point is that I'm still not able to change the icons on the two buttons (save changes and cancel edit) that appears when creating or editing a row.
How do I handle it?
Thanks