Unplanned
Last Updated: 08 Jan 2026 15:15 by Sasa
Sasa
Created on: 08 Jan 2026 15:15
Category: Grid
Type: Feature Request
0
Messages.Commands options are missing in the ASP.NET MVC and Core wrappers

Currently, the text in the Grid commands can be customized in Kendo UI for jQuery using the following commands:

However, such options are missing in the wrappers. Thus, to customize the texts of the commands in the edit dialog, the elements must be modifed as in the example below:

 function onEdit(e){
      e.container.closest('.k-window').find('.k-window-title').text('My custom text')
      e.container.closest('.k-window').find('.k-button[ref-update-button]').text('Button Update Changed');
      e.container.closest('.k-window').find('.k-button[ref-cancel-button]').text('Button Cancel Changed');
 }

In addition, it will be good to have an option that will allow customizing the Edit Dialog text

0 comments