tags:

views:

802

answers:

1

Hi, simple question (i think), but can you get lines of text to wrap in jqgrid? i have had a look round but i can't find anything.

Cheers Luke

+4  A: 

Try the following CSS:

    .ui-jqgrid tr.jqgrow td {
        white-space: normal !important;
    }

This works for me using jqGrid 3.6.

Justin Ethier
works great thanks a lot
beakersoft