Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
51
rated 0 times [  54] [ 3]  / answers: 1 / hits: 20042  / 11 Years ago, tue, june 4, 2013, 12:00:00

I've got a Kendo UI Grid that loads a popup when creating a new or editing an existing record.



I struggling to find a way to change the change the text of the Update button to Save when I'm creating a new record (it currently says Update - and its not correct).



I was able to change the title of the popup window, but my question is: how do I change the button text?



This is the code:



 $(#grid).kendoGrid({
dataSource: dataSource,
pageable: true,
sortable: true,
groupable: true,
height: resizeGrid(),
filterable: true,
toolbar: [create],
columns: [
{ field: OfficeName, title: Office Name },
{ field: SupportNo, title: Phone No., width: 100px },
{ field: SupportEmail, title: Email Address, width: 130px },
{ field: SupportFax, title: Fax No., width: 100px },
{ field: SupportFtp, title: Ftp Url, width: 150px },
{ command: [edit, destroy], title: Actions, width: 160px }],
editable: popup,
edit: function (e) {
var editWindow = e.container.data(kendoWindow);

if (e.model.isNew()) {
e.container.data(kendoWindow).title('Add New Office');
$(.k-grid-update).text = Save;
}
else {
e.container.data(kendoWindow).title('Edit Office');
}
}
});

More From » jquery

 Answers
28

You should define command as:



command: [
{
name: edit,
text: {
edit: Edit, // This is the localization for Edit button
update: Save, // This is the localization for Update button
cancel: Cancel changes // This is the localization for Cancel button
}
},
{
name: destroy,
text: Delete Office // This is the localization for Delete button
}
]


In addition, if you also want to change the text Edit in the popup window, you should use:



editable  : {
mode : popup,
window : {
title: Edit Office, // Localization for Edit in the popup window
}
}

[#77816] Monday, June 3, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
marquezb

Total Points: 237
Total Questions: 97
Total Answers: 89

Location: Israel
Member since Wed, Apr 14, 2021
3 Years ago
;