Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
wiki:predefined_formatter [2010/05/04 10:44]
tony
wiki:predefined_formatter [2017/12/12 17:13]
admin
Line 6: Line 6:
 Formatter can be used in either of two ways: Predefined and [[:​wiki:​custom_formatter | Custom]]. Formatter can be used in either of two ways: Predefined and [[:​wiki:​custom_formatter | Custom]].
  
-In this section, we discuss the Predefined Formatter.+In this section, we discuss the Predefined Formatter. ​
  
 ===== jqGrid Module Requirements ===== ===== jqGrid Module Requirements =====
  
 In order to use the formatting features, make sure you check the box for the Formatter module when you download jqGrid. ​ In order to use the formatting features, make sure you check the box for the Formatter module when you download jqGrid. ​
-For more information refer to [[:​wiki:​download | Download jqGrid]]+For more information refer to [[:​wiki:​download | Download jqGrid]].
  
 ===== Language options ===== ===== Language options =====
Line 22: Line 22:
 Here are the default Formatter options for the English file: Here are the default Formatter options for the English file:
 <code javascript>​ <code javascript>​
-$jgrid = {+jQuery.jgrid = {
 ... ...
    ​formatter : {    ​formatter : {
Line 41: Line 41:
        ​srcformat:​ '​Y-m-d',​        ​srcformat:​ '​Y-m-d',​
        ​newformat:​ '​d/​m/​Y',​        ​newformat:​ '​d/​m/​Y',​
 +       ​parseRe:​ /​[Tt\\\/:​_;​.,​\t\s-]/,​
        masks : {        masks : {
          ​ISO8601Long:"​Y-m-d H:​i:​s",​          ​ISO8601Long:"​Y-m-d H:​i:​s",​
Line 110: Line 111:
 |integer|thousandsSeparator,​\\ defaulValue| thousandsSeparator determines the separator for the thousands, defaultValue set the default value if nothing in the data| |integer|thousandsSeparator,​\\ defaulValue| thousandsSeparator determines the separator for the thousands, defaultValue set the default value if nothing in the data|
 |number|decimalSeparator,​\\ thousandsSeparator,​\\ decimalPlaces,​\\ ​ defaulValue|thousandsSeparator determines the separator for the thousands, decimalSeparator determines the separator for the decimals, decimalPlaces determine how many decimal places we should have for the number, ​ defaultValue set the default value if nothing in the data| |number|decimalSeparator,​\\ thousandsSeparator,​\\ decimalPlaces,​\\ ​ defaulValue|thousandsSeparator determines the separator for the thousands, decimalSeparator determines the separator for the decimals, decimalPlaces determine how many decimal places we should have for the number, ​ defaultValue set the default value if nothing in the data|
-|currency|decimalSeparator,​\\ thousandsSeparator,​\\ decimalPlaces,​\\ ​ defaulValue,​\\ prefix,\\ suffix| The same as number, but we add aditional two options - prefix ​text the is puted before the number and suffix ​the text that is added after the number| +|currency|decimalSeparator,​\\ thousandsSeparator,​\\ decimalPlaces,​\\ ​ defaulValue,​\\ prefix,\\ suffix| The same as number, but we add aditional two options - prefixtext that is inserted ​before the number and suffixtext that is added after the number| 
-|date|srcformat,​\\ newformat| srcformat is the source format - i.e. the format of the date that should be converted, newformat is the new output format. The definition of the date format uses the PHP conversions. Also you can use a set of predefined date format - see the mask options in the default date formatting set|+|date|srcformat,​\\ newformat, \\ parseRe| srcformat is the source format - i.e. the format of the date that should be converted, newformat is the new output format. The definition of the date format uses the PHP conversions. Also you can use a set of predefined date format - see the mask options in the default date formatting set. parseRe is a expression for parsing date strings.|
 |email|none|When a mail type is used we directly add a href with  mailto: before the  e-mail| |email|none|When a mail type is used we directly add a href with  mailto: before the  e-mail|
 |link|target|The default value of the target options is null. When this options is set, we construct a link with the target property set and the cell value put in the href tag.| |link|target|The default value of the target options is null. When this options is set, we construct a link with the target property set and the cell value put in the href tag.|
Line 117: Line 118:
 |checkbox|disabled|The default value for the disabled is true. This option determines if the checkbox can be changed. If set to false, the values in checkbox can be changed| |checkbox|disabled|The default value for the disabled is true. This option determines if the checkbox can be changed. If set to false, the values in checkbox can be changed|
 |select|none|this is not a real select but a special case. See note below| |select|none|this is not a real select but a special case. See note below|
-|actions|keys ​default ​false,\\ editbutton ​default ​true, \\delbutton ​default ​true|This type of formatter is a easy way to add a buttons at certain column for inline ​editiong. We add a two types of actions edit and delete. ​The formatter ​is just experimental and will be described in next releases|+|actions|{ \\ keysfalse,\\ editbutton ​true, \\ delbutton ​true, \\ editformbutton:​ false, \\ onEdit : null, \\ onSuccess: null, \\ afterSave:​null,​ \\ onError: null, \\ afterRestore:​ null, \\ extraparam: {oper:'​edit'​},​ \\ url: null, \\ delOptions: {}, \\ editOptions : {} \\ } \\ |This type of formatter is a easy way to add a buttons at certain column for inline ​editing. We add a two types of actions edit and delete. ​When the editformbutton parameter ​is set to true the form editing dialogue appear instead of in-line edit. The option editOptions ​will be used only for the form editing.|
  
 ==== Formatter type "​Select"​ ==== ==== Formatter type "​Select"​ ====
Line 157: Line 158:
 jQuery("#​grid_id"​).jqGrid({ jQuery("#​grid_id"​).jqGrid({
 ... ...
-   ​colModel:​ [ {name:'​myname', edittype:'​select', formatter:'​showlink',​ formatoptions:​{baseLinkUrl:'​someurl.php',​ addParam: '&​action=edit'​},​ ...} +   ​colModel:​ [ {name:'​myname',​ formatter:'​showlink',​ formatoptions:​{baseLinkUrl:'​someurl.php',​ addParam: '&​action=edit'​},​ ...} 
       ...        ... 
    ]    ]
Line 177: Line 178:
 jQuery("#​grid_id"​).jqGrid({ jQuery("#​grid_id"​).jqGrid({
 ... ...
-   ​colModel:​ [ {name:'​myname', edittype:'​select', formatter:'​showlink',​ formatoptions:​{baseLinkUrl:'​someurl.php',​ addParam: '&​action=edit',​ idName:'​myid'​},​ ...} +   ​colModel:​ [ {name:'​myname',​ formatter:'​showlink',​ formatoptions:​{baseLinkUrl:'​someurl.php',​ addParam: '&​action=edit',​ idName:'​myid'​},​ ...} 
       ...        ... 
    ]    ]
Line 191: Line 192:
 </​code>​ </​code>​
  
 +
 +//But i don't know where from is value'​123'​ ;

QR Code
QR Code wiki:predefined_formatter (generated for current page)