Table of Contents
Custom Formatter
You can define your own formatter for a particular column. Usually this is a function. When set in the formatter option this should not be enclosed in quotes and not entered with () - show just the name of the function.For example,
<script> jQuery("#grid_id").jqGrid({ ... colModel: [ ... {name:'price', index:'price', width:60, align:"center", editable: true, formatter:currencyFmatter}, ... ] ... }); function currencyFmatter (cellvalue, options, rowObject) { // do something here return new_format_value } </script>
Definition and parameters
To the custom formatter are passed the following parameters:
function myformatter ( cellvalue, options, rowObject ) { // format the cellvalue to new format return new_formated_cellvalue; }
- cellvalue - is the value to be formatted
- options - is an object containing the following element
- options : { rowId: rid, colModel: cm} where rowId - is the id of the row colModel is the object of the properties for this column getted from colModel array of jqGrid
- rowObject - is a row data represented in the format determined from datatype option. If we have datatype: xml/xmlstring - the rowObject is xml node,provided according to the rules from xmlReader If we have datatype: json/jsonstring - the rowObject is array, provided according to the rules from jsonReader
Unformatting
As mentioned in Predefined Formatter chapter all predefined types are compatible with the editing modules. This means that the numbers, links, e-mails, etc., are converted so that they can be edited correctly. Also the methods (like getRowData and getCell) that get data, used this unformat in order to get the original value. The question is: What to do if we use a custom formatter function and want to to have the original value back if we use editing or methods getRowData and getCell?
The answer is: You can use your own custom unformatter function to do that. This function can be used in colModel
Show image and edit image's path:
<script> jQuery("#grid_id").jqGrid({ ... colModel: [ ... {name:'price', index:'price', width:60, align:"center", editable: true, formatter:imageFormat, unformat:imageUnFormat}, ... ] ... }); function imageFormat( cellvalue, options, rowObject ){ return '<img src="'+cellvalue+'" />'; } function imageUnFormat( cellvalue, options, cell){ return $('img', cell).attr('src'); } </script>
To the custom unformat function are passed the following parameters:
- cellvalue - is the value to be unformated (pure text).
- options - is an object containing the following element
- options : { rowId: rid, colModel: cm} where rowId - is the id of the row colModel is the object of the properties for this column getted from colModel array of jqGrid
- cellobject - is a jQuery cell object. This object can be used to obtain different things from the cell element - by example jQuery(cellobject).html() can be used to get the html content instead of the text.
Example
Below we will simulate partial currency formatter using a custom format and unformat functions
<script> jQuery("#grid_id").jqGrid({ ... colModel: [ ... {name:'price', index:'price', width:60, align:"center", editable: true, formatter:currencyFmatter, unformat:unformatCurrency}, ... ] ... }); function currencyFmatter (cellvalue, options, rowObject) { return "$"+cellvalue; } function unformatCurrency (cellvalue, options) { return cellvalue.replace("$",""); } </script>
If the value that is inserted or updated in the grid is 123.00, the in the grid it will be displayed as: $123.00; When we use getRowData or getCell methods or any editing module the value for this column will be 123.00
Creating common formatter function
There are times where you maybe want to use your custom format/unformat functions in many places into the code. This of course can be done defining the functions as example above.
We have designed the formatter module so that it can be easy extended from the developer and doing it so make the development process easy.
Below we will discuss how to make your own formatter functions to be visible all into the code.
After loading the jqGrid Java Script files you can define in script tag the following (or simple create your own file and include it into the head section)
<script type="text/javascript"> jQuery.extend($.fn.fmatter , { currencyFmatter : function(cellvalue, options, rowdata) { return "$"+cellvalue; } }); jQuery.extend($.fn.fmatter.currencyFmatter , { unformat : function(cellvalue, options) { return cellvalue.replace("$",""); } }); </script>
Then in your code you just need to do:
<script> jQuery("#grid_id").jqGrid({ ... colModel: [ ... {name:'price', index:'price', width:60, align:"center", editable: true, formatter:'currencyFmatter'}, ... ] ... });
Note that in this case you will not need to specify the unformat function.
Discussion
Hi,
When I use the above method to format cell nothing happening. I debug line by line and see there is no values passing to formatter function.
cellvalue is not defined, options is not defined, rowObject is not defined.
I want to change the row color based on the cell value. Please help me with this.
Thanks Hari
Hi, How can I get value of another column in that formatter.
eg . I have a Questions table. and I have created a link formatter like this.
<script type=“text/javascript”>
</script>
works fine when used with grid column q_id.
I want to show or hide the edit and/or delete links as per value from another gridcolumn value i.e status. How can I do that?
Give me a hint..
Thanks. Girish
I needed to create a lossy formatter, i.e. one that would *not* allow unformatting or getting original value back. As a workaround I'm storing full record data (also fields not displayed by jqGrid) attached to row DOM element. Here's more details: http://wojtek.oxos.pl/post/9423083837/fetching-original-record-values-in-jqgrid
– http://wojtek.oxos.pl
Updated URL: http://blog.wojt.eu/post/9423083837/fetching-original-record-values-in-jqgrid
Hello, Girish.
Were you able to get a reply to your question? I have a similiar need to utilize values from other columns?
Thanks for any info you can pass along.
Regards, Mike
Hi all,
could anyone please suggest the answer with a proper code.. i am new to jquery
@Girish,
You can access all of the cell values from the rowObject parameter to your formatter function. The rowObject is an array of all of the column values for the current row.