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
$('#dg').datagrid({
   url: 'prog1.cgi',
   columns: [[
      {field:'Order',title:'Title',
          editor: {
              type: 'combogrid',
              options: {
                 pageSize: '10',
                 pagination: true,
                 idField: 'Order',
                 textField: 'Order',
                 url: 'prog2.cgi',
                 method: 'get',
                 columns: [[
                    {field:'Order',title:'Title'},
                    {field:'Description',title:'Description',width:120}
                 ]]
              }
           }
        }
    ]]
});