the paramt limiToList not found for combogrid.
Its ok only combo.
I can enable for search and limit input value for only values of list.
With "editable: false" i resolve partial, unless search.
   
$('#dg1_COMBO').combogrid({
            width: '250px',
            label: 'COMBO',
            valueField: 'ID',
            textField: 'DESCRI',
            idField: 'ID',
            method: 'get',
            url: 'api/data/combo_ABB_CRUD_COMBO__COMBO.json',
            required: true,
            panelWidth: 250,
            //editable: false,
            limitToList: true,
            columns: [[
                    {field: 'ck', checkbox: true},
                    {field: 'ID', title: '#', sortable: true, hidden: true, },
                    {field: 'DESCRI', title: 'DESCRI', sortable: true, },
                ]],
        });