Hello,
I have data only receiving 1 and 0, and I want to display it as ✓ and ✗ instead.
I can try with
var tickRender = function (ui) {
dataRow = ui.rowData.Circuit
// validation function
}
colModel: { title: "Circuit", width: 120, dataIndx: "Circuit", render: tickRender }
but if I have several columns it would be tedious to write every function per column,
could you help me know the proper way doing it?
Thanks