Dear Abu,
Is it possible to display (not edit form ) some long text in a row to be more readable?
I mean break lines / adjust row text lines as in textarea edit-form.
Thanks
Tomasz
2 Answers
Q) How to do word-wrap (fit) content in grid cells?
Update following css in page to change cell wrapping.
<style>
.ui-jqgrid tr.jqgrow td
{
vertical-align: top;
white-space: normal !important;
padding:2px 5px;
}
</style>
Your Answer