EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Opan Mustopah on March 17, 2015, 02:28:36 AM



Title: setting rowheight on combogrid
Post by: Opan Mustopah on March 17, 2015, 02:28:36 AM
hello again, i have a simple question

i have a datagrid and setting rowHeight into 40px by overriding class .datagrid-row = 40px;
but the problem is when i using combogrid, rowHeight on combogrid is 40px too (set to global rowheight). i want to make rowheight on combogrid into default height = 25px;

how to do that?

many thanks for the answer.


Title: Re: setting rowheight on combogrid
Post by: stworthy on March 17, 2015, 08:44:26 AM
Please add the code below to your page.
Code:
<style>
.combo-panel .datagrid-row{
  height:25px;
}
</style>


Title: Re: setting rowheight on combogrid
Post by: Opan Mustopah on March 17, 2015, 08:47:37 AM
many many thanks stworthy you help me again :D