I am facing the trobule that the disalbed field on Nintex Forms and I can not get this field's value by Button clicking using Java Script.
Field setting:
defalut value: 'HOGE'
Appearance > display:Yes
Appearance > availabilty:No
above setting in Nintex forms in Japanese, the field value showed as a static text.
I want to get/set its field value using JavaScript:
I tried below JS code on Button's custom script:
obj = NWF$('#'+HOGE);
obj.removeAttr('disabled');
alert(obj.text());
obj.Attr('dsiabled','disabled)'
Then I publied the form and checked the code, alert showed blank.
Does anybody help me?
thanks.