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:''} Thi
Solution 1:
You can use $.fn.fmatter.call(this, "currency", cellValue, options)
inside of custom formatter instead of the usage of $.fmatter.util.NumberFormat
.
Post a Comment for "Keeping The Currency Formatted JQgrid Cell Blank Without Default Value If No Is Value Returned"