Hello,
I have a question.
Is there any easy way to implement check all option for columntype checkbox?
I have a filter and after filter I would like to click on select all and it would select/unselect all checkboxes instead of clicking 100 times.
================================================================================================================
Another question is that my grid might have 4 + X random columns so I need to get dynamicly my data & headers.
In your example
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/dynamiccolumns.htm
You have hardcoded datafields.
datafields: [
{ name: 'id', type: 'number' },
{ name: 'name', type: 'string' },
{ name: 'type', type: 'string' },
{ name: 'calories', type: 'int' },
{ name: 'totalfat', type: 'string' },
{ name: 'protein', type: 'string' }
]
is there any jsfiddle example where number of columns will vary depending on circumstances but use the same grid id?