Hi Rahis ARM,
In this case you need to increase the width of the columns with aggregates, e.g.:
{
text: 'In Stock',
datafield: 'available',
columntype: 'checkbox',
width: 300,
aggregates: [{
'In Stock': function(aggregatedValue, currentValue) {
if (currentValue) {
return aggregatedValue + 1;
}
return aggregatedValue;
}
}, {
'Not In Stock': function(aggregatedValue, currentValue) {
if (!currentValue) {
return aggregatedValue + 1;
}
return aggregatedValue;
}
}]
}
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/