This is a migrated thread and some comments may be shown as answers.

How to change the name of the excel toolbar for all grids?

2 Answers 142 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Federico
Top achievements
Rank 1
Federico asked on 24 Oct 2017, 12:39 PM

How to change the name of the excel toolbar for all grids?

 

 

2 Answers, 1 is accepted

Sort by
0
Federico
Top achievements
Rank 1
answered on 24 Oct 2017, 01:40 PM
kendo.ui.Grid.prototype.options.messages =
    $.extend(true, kendo.ui.Grid.prototype.options.messages, {
      name: "excel page example."
    });
0
Stefan
Telerik team
answered on 26 Oct 2017, 07:11 AM
Hello, Federico,

The desired result can be achieved by changing the messages for the excel command:

kendo.ui.Grid.prototype.options.messages.commands =
  $.extend(true, kendo.ui.Grid.prototype.options.messages.commands, {
  excel: "excel page example."
});

http://dojo.telerik.com/AYEciC

I hope this is helpful.

Regards,
Stefan
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Grid
Asked by
Federico
Top achievements
Rank 1
Answers by
Federico
Top achievements
Rank 1
Stefan
Telerik team
Share this question
or