In MVC I have the grid bound to a set of client functions:
.Events(builder => builder
.ColumnHide("columnHideKendo")
.ColumnShow("columnShowKendo")
.ColumnReorder("columnReorderKendo")
)
However, the Hide and Show do not fire when I remove or add a column via the filter menu (see screenshot)
Is there another way to be notified if the user has removed a column?
The Javascript functions look like this:
.Events(builder => builder
.ColumnHide("columnHideKendo")
.ColumnShow("columnShowKendo")
.ColumnReorder("columnReorderKendo")
)
However, the Hide and Show do not fire when I remove or add a column via the filter menu (see screenshot)
Is there another way to be notified if the user has removed a column?
The Javascript functions look like this:
function columnHideKendo(e) {
setTimeout(function() {
e.sender.trigger("dataBoundKendo");
});
}
function columnShowKendo(e) {
setTimeout(function() {
e.sender.trigger("dataBoundKendo");
});
}