Hi All,
Is there a way to bind extra event to the 'create' toolbar button? I want to populate data before or after into grid column after a new row was insert by kendo.
I tired the following for the toolbar button but with no luck
edit: function (e) {
e.container.find(".k-grid-add").on("click", function (e) {
//populate data here
});
}
and this
var grid = $("#grid").kendoGrid({...});
grid.data().kendoGrid.bind('edit', function (e) {
e.container.find('.k-grid-add').click(function () {
//populate data here
});
TIA