Keeping the currency formatted JQgrid cell blank without default value if no is value returned
问题 once of the the cells in my jqgrid is currency formatted with the formatoptions:{decimalSeparator:".", thousandsSeparator: ",", decimalPlaces: 2, prefix: "$ ",defaultValue:''} This is the case when I have a value for it But in cases where I don't have a value to that particular field Grid by default takes $0.00 I would like to keep it blank instead of filling with a default value ie $0.00 How can I do that? After looking up some question I went with the custom formatter if (cellValue != 0.00)