Hi, I have an issue with a dialog box functionality in Visual Builder Studio.
I have a dialog box which opens on click of button. On clicking the button, the dialog box opens, but closes immediately and does not open when clicking the button again.
The dialog box is defined as below:
<oj-dialog id="likertAddDailog" dialog-title="Add Likert Details" cancel-behavior="icon" >
\<div slot="body">
\<oj-form-layout label-edge="top" direction="column" id="">
\<oj-input-text id="likertRecordsName" label-hint="Label Set"
value="{{ $variables.likertAddObj.RecordName }}" required="true">\</oj-input-text>
\</div>
\<div slot="footer">
\<oj-button id="SaveLikertButton" on-oj-action="\[\[$listeners.saveLikertButtonAction\]\]" >Save\</oj-button>
\<oj-button id="CancelLikertBtnSection" on-oj-action="\[\[$listeners.cancelLikertBtnSectionAction\]\]" >Cancel\</oj-button>
\</div>
\</oj-dialog>
Kindly help me with resolving this issue.