gmoney
21 Feb 2007, 3:52 PM
I want to replace this:
for(i=0; i<document.forms[3].elements.length; i++){
document.forms[3].elements[i].className = '';
}
with the Ext equivalent.
I tried Ext.select together with a removeClass call... but I am not sure if that is what I need to do and I couldnt get it to work unless I use the ugly code above.
for(i=0; i<document.forms[3].elements.length; i++){
document.forms[3].elements[i].className = '';
}
with the Ext equivalent.
I tried Ext.select together with a removeClass call... but I am not sure if that is what I need to do and I couldnt get it to work unless I use the ugly code above.