How do I change the padding of all columns? I assume that it would be done with CSS.
The left/right padding in the grid is a bit small. I would like to make it slightly larger
1 Answers
You can try adding this style after include CSS files.
/*content*/
.ui-jqgrid tr.jqgrow td { padding-left: 10px !important; }
/*header*/
.ui-jqgrid .ui-jqgrid-htable th div { padding: 6px !important; }
Your Answer