The jGrid supports the column templates. Which can be used as the default template for all columns. Some explanation is at Stopping columns resizable in jqgrid
An the sample code from there:
var myDateTemplate = {sorttype:'date', formatter:'date',
formatoptions: {newformat:'m/d/Y'}, datefmt: 'm/d/Y',
align:'center', width:80 }
$("list").jqGrid({
colModel: [
...
{name:'column1': template:myDateTemplate},
{name:'column2': template:myDateTemplate, width:90},
...
]
...
});
Is it possible that we use this feature while we are using jquery grid tags sjg:grid
and sjg:gridColumn
? How?