I want to display the applied filter criteria on the Kendo UI Grid

前端 未结 2 1723
感动是毒
感动是毒 2021-02-10 18:58

How can I display any applied filter criteria on the Kendo UI Grid. I would like to have a readonly display, of the applied criteria. Current functionality does allow user to ap

2条回答
  •  星月不相逢
    2021-02-10 19:21

    how about combining two filters of grid. this way the user can see the selected filter in text box and even remove it by hitting the 'x' button on filtered column text box.

    you can do this by setting grid filterable like this

    filterable: {
            mode: "menu, row"
        }
    

    the documentation and example is in here

提交回复
热议问题