T O P I C R E V I E W |
Testa |
Posted - 07 Apr 2009 : 07:40:12 How can i do this? I' ve a disabled button that must became active after write some field. What's the command to enable somthing?[2 ?:-|]
Thanks
|
2 L A T E S T R E P L I E S (Newest First) |
Testa |
Posted - 07 Apr 2009 : 14:08:44 Thanks a lot. |
s.dav |
Posted - 07 Apr 2009 : 09:03:58 You can enable/disable it using javascript.
The javascript command is
button.disabled=false; // to enable it
button.disabled=true; // to disable it
|