After implementing the following javascript to align the Update and Cancel popup editors buttons to the right they now display in the incorrect order, i.e. Cancel then Update.
function onGridEdit(e){
e.container.find('.k-grid-update,.k-grid-cancel').css('float','right');
}
How do I get the buttons on the right and remain in the Update, Cancel display order?
function onGridEdit(e){
e.container.find('.k-grid-update,.k-grid-cancel').css('float','right');
}
How do I get the buttons on the right and remain in the Update, Cancel display order?