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
wiki:predefined_formatter [2011/07/08 13:03]
nafeger fix grammar
wiki:predefined_formatter [2018/02/02 20:52] (current)
admin
Line 1: Line 1:
-~~ODT~~ 
 ====== Predefined Formatter ====== ====== Predefined Formatter ======
  
Line 6: Line 5:
 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 41: Line 40:
        ​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 111: Line 111:
 |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 that is inserted before the number and suffix: text that is added after the number| |currency|decimalSeparator,​\\ thousandsSeparator,​\\ decimalPlaces,​\\ ​ defaulValue,​\\ prefix,\\ suffix| The same as number, but we add aditional two options - prefix: text that is inserted before the number and suffix: text 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 117:
 |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: false,\\ 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.|+|actions|{ \\ keys: false,\\ 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 157:
 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 177:
 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 191:
 </​code>​ </​code>​
  
 +
 +//But i don't know where from is value'​123'​ ;

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