How to unselect the grid record in kendoui

前端 未结 2 911
渐次进展
渐次进展 2021-02-18 18:47

I am selecting the listview record on databound event. I have written the following code in databound

       var grid = $(\"#grid\").data(\"kendoGrid\");
                


        
2条回答
  •  广开言路
    2021-02-18 19:13

    Use clearSelection:

    var grid = $("#grid").data("kendoGrid");
    grid.clearSelection();
    

提交回复
热议问题