Column contains long multiline texts which make row height too big.
I tried styles below based on Tony\'s answer in http://www.trirand.com/blog/?page_id=393/help/po
I know this is late, but you can use this CSS for ALL columns:
.ui-jqgrid tr.jqgrow td { white-space:nowrap; }
Or, for an individual column:
.no-wrap-col { white-space: nowrap; }
Then in your ColModel, on whichever column you want to prevent wrapping on, apply the class:
classes: "no-wrap-col"