In Nintex Forms, if you disabled a field by a form rule the value will not be saved.
1. Let the field Enabled and add JavaScript code to the Form Settings.
NWF$('#'+txtField1).prop("readonly", true);
where 'txtField1' is the Client ID JavaScript variable name.
2. Also, You can use 'Calculate Value' control that connects to your list field and use workflow to update field value.
So that it will displays the value when it has some value.
you can place control into a panel and apply rule on the panel.
The best way to make control ready only and save the value is, Write a rule saying if the control contains some value the disable the control. then it works
Hi All,
i found the solution. we just need to set the control setting "Advanced -> Control Mode" to either Auto / Edit / Display.
thanks