Hi @Hafila Hatta ,you can write an onSubmit client script as below : function onSubmit() {
if ((g_form.getValue('checkbox_variable1') == 'false') && (g_form.getValue('checkbox_variable2') == 'false') && (g_form.getValue('checkbox_variable3') == 'fals...
Yes, you can create variables with hidden checkbox true and write onChange Client Script to make the other variables visible.In your Example : you can create B & C variable with hidden checkbox true,then create an onChange client script (on change of...
Hi @saint , I had a similar requirement and I achieved it via calling Script Include from UI Page itself. - Added a button to footer on UI Page and and called a function On click of the button.<footer class="modal-footer">
<button class="btn-default...
Hi @Aishwarya20 , As soon as value is selected in List collector variable, it stores all selected values as comma separated string. you can use g_form.getValue('field_name') to get the comma separated values from List collector. You can split it and ...
Hi @sriram7 , If you want to display the error message when you are clicking on Submit then- create a hidden field(valid_date) with default value 'Yes'.- Write an UI Policy to validate the selected date and set the value of hidden field 'valid_date' ...