3.2.0

Filter problem with Dansih letters ÆØÅ

Helle experts,

I'm fooling around with an projekt for an first aid org.

I'm trying to make an filter function in my gridview, but I Keep getting an error.

Take a look:
http://www.rescue-group.dk/interface/crm/gridtest.asp

The filter function seems to work only on the first column.

Please e-mail me if you can help: web@rescue-group.dk


Best regards
Mark
Mark Juul
December 11,
I finally found the error
function grid_search(searchterm) {
                 grid_unfilter();
                 var i, rows = [], max = objUsers.getRowCount();
                 for (i = 0; i < max; i++) {
                     if (objUsers.getCellValue(0, i).toUpperCase().indexOf(searchterm.toUpperCase()) != -1) {
                         rows.push(i);


The solution:
objUsers.getCellValue(1, i).



:)
Mark
December 15,

This topic is archived.

See also:


Back to support forum