I need to display a blank (NULL) when there is no value on a number formatted column. By default – it looks to display 0.00.
I have seen a work-around but do not-know how to integrate-it with PHPGrid.
http://stackoverflow.com/questions/17024027/jqgrid-show-blank-instead-of-null
Can you recommend any options?
Thanks
Mike
1 Answers
I was able to solve this issue by reading-up on the jQuery documentation – I see my mistake.
In the sample there was a $ symbol (see below) ahead of the jqGrid call.
$("#list1").jqGrid({
Replacing the $ with "jquery" and referencing the new function worked perfectly.
jquery("#list1").jqGrid({
Thanks
Mike
Your Answer