Navneet Chanalia's SharePoint Blog
Showing posts with label
default
.
Show all posts
Showing posts with label
default
.
Show all posts
Thursday, 2 August 2018
How to execute w2ui delete event without warning message?
w2ui.grid.on('delete', function(event) {
event.force = true;
//console.log('No confirmation required');
});
OR
onDelete: function (event) {
event.force = true;
...
}
Monday, 2 April 2018
How to update text and tooltip of default save button in w2ui grid?
var btn = w2obj.grid.prototype.buttons;
btn['save'].
text
= w2utils.lang('New Text');
btn['delete'].text = w2utils.lang('Reject Selected');
btn['delete'].
tooltip
= null;
Older Posts
Home
Subscribe to:
Posts (Atom)