0
votes

In my kendo grid, whenever i am applying filters from columnMenu, my grid gets reloaded completely with the filtered result. Hence, i also lost my value inside columnMenu filter textbox.

Is there any way to populate/fill columnMenu filter options through javascript if i have the filter string?

1

1 Answers

0
votes

I've faced the same problem, but it was when I added new object to the data source (new row) and it rendered the whole grid and I lost textboxes values. I overcame this problem by adding an event listener on the textboxes when changed and changing the field in the object so when it render the grid again it will set the current value in the textbox. I'm not sure if it the best solution, but it works for me.