Hi all,
in a combobox I limit the possible options to those listed with the following (working) code:
         $('#Sigla').combobox({
            url: ...,
            validType: 'inList["#Sigla"]'
         });"inList" is described in the following thread:
http://www.jeasyui.com/forum/index.php?topic=3364.msg7623#msg7623I want to do the same in a datagrid editor but the following code doesn't work:
         $('#dg').datagrid({
            columns: [[
               {field:'Sigla',
                   editor: {
                      type: 'combobox',
                      options: {
                         url: ...,
                         validType: 'inList["#Sigla"]'
                      }
                   }
               }
           ]]
         });Thanks for any help.
Miche