Dear Victor,
Sorry, but my question was about how to set HtmlAttribute "Title" but not for how to set Text for the command buttons "Update" and "Cancel"
All command buttons in my project - "edit", "destroy", "update" and "cancel" - have no text, only icons.
HtmlAttribute "title" allows to display "tooltip" on button's hover like "Edit Row", "Delete Row".
It is possible to set "title" for 2 buttons - Edit and Destroy within widget configuration code, like:
command.Edit().HtmlAttributes(new { title = "Edit Row" });
command.Destroy().HtmlAttributes(new { title = "Delete Row" });
Another 2 buttons - Update and Cancel appear during runtime in Inline Edit Mode and I cannot find the way how to set "Title" for these 2 buttons.
Thank you.