HTML Reset Button doesn't work

HTML Reset Button doesn't work

sitsumsitsum Posts: 9Questions: 0Answers: 0
edited May 2012 in General
Hi Guys,

I have added a number of custom filters on a number of columns and 1 Reset button










$('#idReset').click( function () {
document.filter.reset();
oTable.fnFilterClear();
} );

for some strange season the reset only works in IE, not Google Chrome or FireFox, then i change the above code to the default HTML form reset button:










$('#idReset').click( function () {
oTable.fnFilterClear();
} );

it does the same thing it works in IE but Chrome and Firefox.

Does any one experience the same problem or better knows how to resolve it.
This discussion has been closed.