:: Forum >>

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
Saturday, December 11, 2010
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
Wednesday, December 15, 2010

This topic is archived.


Back to support forum

Forum search