Closed GoogleCodeExporter closed 8 years ago
Hi,
do you have some online example. I have not used it that way but I don't know
why it should not work.
Thanks,
Jovan
Original comment by joc...@gmail.com
on 4 Apr 2012 at 7:51
After issue 7 patch grouping by Cyrillic strings shows only first group
Use simple grouping on column with Cyrillic symbols (maybe, any non-ascii127
characters - at least Hebrew too).
Only first grouping row inserted into table.
Reproduced under Windows 7 64 bit in Chrome 18.0.1025.162 and Internet Explorer
9.0.8112.16421.
Problem is in line 122:
return sGroup.toLowerCase().replace(/\W+/g, "-");
returns '-' for cyrillic strings.
Maybe general solution should use reversible encoding (like Punicode or so),
but in my simplest case replacing line 306 does the work for me:
--if (sLastGroup == null || _fnGetCleanedGroup(sGroup) !=
_fnGetCleanedGroup(sLastGroup)) {
++if (sLastGroup == null || sGroup != sLastGroup) {
Original comment by dachs...@gmail.com
on 19 Apr 2012 at 7:32
Hi,
Could you please try with the latest version. I have created an example with
Hebrew letters
http://jquery-datatables-row-grouping.googlecode.com/svn/trunk/support/issue23.h
tml
Regards,
Jovan
Original comment by joc...@gmail.com
on 13 Jul 2012 at 1:53
Thank you. It works for me (tested in Chrome+IE+FF)
Original comment by dachs...@gmail.com
on 16 Jul 2012 at 8:51
Original issue reported on code.google.com by
Nir....@gmail.com
on 29 Mar 2012 at 1:45