Click here to Skip to main content
15,901,971 members

Comments by vinu.1111 (Top 17 by date)

vinu.1111 11-May-12 3:10am View    
i have the the javascript for filter but it will delete's the remaining rows

function filter(term, _id, cellNr) {
var suche = term.value.toLowerCase();
var table = document.getElementById(_id);
var ele;
for (var r = 1; r < table.rows.length; r++) {
ele = table.rows[r].cells[cellNr].innerHTML.replace(/<[^>]+>/g, "");
if (ele.toLowerCase().indexOf(suche) >= 0) {
table.rows[r].style.display = '';
}
else {
table.rows[r].style.display = 'none';
}
}
vinu.1111 11-May-12 3:08am View    
Alternate solution to the previous question
how to filter html table by not deleting the remaining rows in table
vinu.1111 11-May-12 2:23am View    
no after binding a table i'm giving a key word
based on that again it should bind as the above example
vinu.1111 20-Jun-11 0:51am View    
i got it...
just install unicode font that solve..
thank u .. :-)
vinu.1111 13-Jun-11 0:30am View    
hi... SAKryukov thanks for the solution... i got it..
it working fine in windows XP but it is
not working in windows server 2008 :-( ... what to do... :-(
i have hosted a simple application in that it is not working
IIS 7 help me...