I have a webnumericedit that is set to enable='false'. I want to enable it by javascript like this:
function Enable_wne(oEdit, oldValue, oEvent){ var wnecontrol= document.getElementById('<%= wnecontrol.ClientID%>'); wnecontrol.disabled=false;}
Hi,
The method is setEnabled passing in a boolean valule.
so to disable wnecontrol.setEnabled(false)
to enble wnecontrol..setEnabled(true)
Here is a help link
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.1/CLR3.5/html/WebNumericEdit_Object_CSOM.html
Hello,
I tried the setEnabled function and it did not worked. When I check the value by alert(controle.disabled); I get the correct value but on screen it's still disabled