Here is my FlexiGrid
$("#grUser").flexigrid({
url: 'someJSON.php'
, dataType: 'json'
, colModel :
[
{display: '', name : 'Index', width :100, align: 'left'}
, {display: '', name : 'Value', width : 100, align: 'left'}
]
, title: 'Details'
, width: 350
, height: 200
, singleSelect: true
});
The show/hide columns feature in the header is really cool option, but I want to specify on which column to be available and I am having trouble finding a good documentation about what are my options in specifying the colModel. Here
{display: '', name : 'Index', width :100, align: 'left'}
What else can we put in the definition of a column?
Additionally - what is your documentation source for FlexiGrid?