I have People Control added to my Nintex Form. I want all the users to be cleared/removed from the field.
The control settings are as below -
Whenever I open the form the users that were selected in the last instance are availabel. I want to remove these users from the control on the form using JavaScript.
I am able to retreive the value of these users using the below JavaScript.
var companyUsers = NWF$('#' + fldCompanyUsers).val();
alert(companyUsers);
However, I am just not able to clear the control of all the usesr.
Any help is appreciated.
Thanks.