Hi. Before I was using the code below
$('#cc').combogrid({
	autoRowHeight: false,
	onLoadSuccess: function(){
		$(this).combogrid('grid').datagrid('getPanel').find('.datagrid-row').css('height','50px');
	}
})
Now it is not working, giving error. I searched the forum pages and I found this code. It is working fine
<style>
.combo-panel .datagrid-row{
  height:25px;
}
</style>
Now the problem is I want users to decide the height. So how can I write the above style as  javascript code.