|
Title: datagrid + combogrid + enableFilter Post by: rezzonico on October 05, 2015, 06:11:58 AM Hi all,
I have a datagrid (dg) with one field (Order). I use combogrid as editor the field "Order". All works as expected. The problem is that now I want to add "enableFilter" for the combogrid. How is it possible ? Any help is appreciated. Regards. Miche Code: $('#dg').datagrid({Title: Re: datagrid + combogrid + enableFilter Post by: stworthy on October 05, 2015, 05:13:09 PM When begin to edit a row, you can get the field editor and call the 'enableFilter' method on the datagrid. Please try this code.
Code: $('#dg').datagrid({Title: Re: datagrid + combogrid + enableFilter Post by: rezzonico on October 06, 2015, 02:20:24 AM It works perfeclty !
Thanks a lot Miche |