i enabled the multi filter and i can not able set the height that is going very long drop down box, how i can fix the height of multi filter option such like excel.
thanks.
1 Answers
If you are using full version, you can edit lib/inc/jqgrid_dist.php and change height:auto to e.g. height:200px
function link_multiselect(elem)
{
var $elem = $(elem), id = elem.id,
inToolbar = typeof id === "string" && id.substr(0, 3) === "gs_",
options = {
selectedList: 4,
height: "auto",
…
}
Your Answer