EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: waltex on November 27, 2017, 07:51:45 AM



Title: limitToList for combogrid
Post by: waltex on November 27, 2017, 07:51:45 AM
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.

Code:
   
$('#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, },
                ]],
        });


Title: Re: limitToList for combogrid
Post by: jarry on November 27, 2017, 07:17:20 PM
Please try to set the 'reversed' property to true.