Hi geromelouie,
The best way to have the functionality you want is to use the cellsrenderer
callback of the columns property.
I have prepared a quick code snippet on how to use it:
columns: [
{ text: 'Name', datafield: 'firstname', width: 120,
cellsrenderer: function (row, columnfield, value, defaulthtml, columnproperties) {
return '<h3>' + value + '</h3>';
}
},
{ text: 'Last Name', datafield: 'lastname', width: 120 }]
//Rest of your code
Let me know if that works for you!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.com