Hello David,
"EP Content Development" is not really good place for questions regarding WD 😉
Anyway, if you would like to access UI elements by name you need to implement this access in wdDoModifyView method. You have <i>IWDView view</i> as one of parameters.
Use something like:
<i>IWDButton okBtn = (IWDButton)view.getElement("btnOK");
okBtn.setEnabled(false);</i>
Cheers, Maxim R.
Add a comment