EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: zzdfc on April 28, 2012, 12:11:59 AM



Title: How to set height of ComboBox,please?
Post by: zzdfc on April 28, 2012, 12:11:59 AM
How to set height of ComboBox,please?


Title: Re: How to set height of ComboBox,please?
Post by: stworthy on April 28, 2012, 01:12:36 AM
Change css style to gain this feature:

Code:
.combo-text{
height:30px;
line-height:30px;
}
.combo-arrow{
height:30px;
}


Title: Re: How to set height of ComboBox,please?
Post by: andy on July 20, 2012, 02:03:03 PM
$(function()
{
  $('#tambahbarang_kondisi_text').combobox
  ({ 
       url:'<? echo base_url()."index.php/tambahbarang/fcn_kondisibox_load";?>', 
       valueField:'Id',  textField:'Id', panelHeight:65
  });
            
});