The solution is:
Set the column’s text field to: RecordsRequested. However, the column header’s height is defined by the value of the Grid’s columnsheight property. To change the height of the columns header, you need to set that property, too.
For example:
// initialize jqxGrid $("#jqxgrid").jqxGrid( { width: 670, source: source, theme: theme, columnsheight: 50, columns: [ { text: 'First Name', datafield: 'firstname', width: 100 }, { text: 'Last Name', datafield: 'lastname', width: 100 }, { text: 'Product', datafield: 'productname', width: 180 }, { text: 'Records<br/>Requested', datafield: 'available', columntype: 'checkbox', width: 80 }, { text: 'Quantity', datafield: 'quantity', width: 80, cellsalign: 'right' }, { text: 'Unit Price', datafield: 'price', width: 90, cellsalign: 'right', cellsformat: 'c2' }, { text: 'Total', datafield: 'total', width: 100, cellsalign: 'right', cellsformat: 'c2' } ] });
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com