I have tried to add this CSS for changing row height, but it doesn\’t work. .ui-jqgrid tr.jqgrow td { height:20px; } Why?
3 Answers
Perhaps it’s overridden by some other included css.
Try using !important. e.g.
.ui-jqgrid tr.jqgrow td { height:20px !important; }
It works when I set higher value, for example 30px, but it’s not working for 20px.
It’s already 20px in demos. You can decrease it further to 16px but not below because of row icons on last columns. See attached image.
Your Answer