Open GoogleCodeExporter opened 8 years ago
I am using this for the first time and noticed that if we set
"bExpandableGrouping": true and my group header text has some special
characters then expand/collapse will throw exception.
I tried following things:
1. Add new method to replace all special characters with –
(implementation can be improved)
function _fnGetCleanedGroup(sGroup){
sGroup= sGroup.replace(/\./g, '-');
sGroup= sGroup.replace(/\//g, '-');
sGroup= sGroup.replace(/\(/g, '-');
sGroup= sGroup.replace(/\)/g, '-');
sGroup= sGroup.replace(/\ /g, '-');
sGroup= sGroup.replace(/\\/g, '-');
sGroup= sGroup.replace(/\!/g, '-');
sGroup= sGroup.replace(/\,/g, '-');
return sGroup;
}
2. Replace following strings in method $(nCell).click:
sGroup = _fnGetCleanedGroup(sGroup);
Thanks,
Ashish U
Original comment by ubgadeas...@gmail.com
on 21 Mar 2014 at 4:40
Original issue reported on code.google.com by
isa...@gmail.com
on 12 Nov 2013 at 4:08