EasyUI Forum

General Category => Bug Report => Topic started by: fgendorf on June 21, 2018, 08:57:29 AM



Title: extension datagrid-filter height differ from height themes sizes
Post by: fgendorf on June 21, 2018, 08:57:29 AM
Hi, since version 1.5.5 tha size of textbox, combobox,datebox,etc increase from 22px to 25px, in the extension datagrid-filter, the textbox is ok, but combobox still 22px height.

(https://sftp.esss.co/~fred/height.png)

Where I need change to fix?

Thanks for advance


Title: Re: extension datagrid-filter height differ from height themes sizes
Post by: jarry on June 21, 2018, 05:21:00 PM
You can override all the editor height:
Code:
<script>
$.fn.datagrid.defaults.editorHeight=25;
</script>
You also can set the 'height' for the combobox.
Code:
field:'status',
type:'combobox',
options:{
    height:25,
    panelHeight:'auto',
    data:[{value:'',text:'All'},{value:'P',text:'P'},{value:'N',text:'N'}],
    ...
}


Title: Re: extension datagrid-filter height differ from height themes sizes
Post by: fgendorf on June 22, 2018, 06:25:15 AM
Thanks  ;)