Hi, I’ve just learned to integrate the custom form. Which is great. However, I’m looking for ways to read variable data within the form itself dynamically.
Here’s custom form look like in which I’m trying to read the variable value for ‘JoinMeetingURL’.
<p>
Demo custom form
</p>
<form class="form-horizontal">
<div class="control-group">
<div class="controls">
<p class="input-group">
<label for="joinMeetingURL">Teams Meeting</label>
<label>#{task.name}</label>
</p>
</div>
</div>
</form>
But it doesn’t show the value for ‘JoinMeetingURL’ on the form, and it looks like this on the tasklist.
Would appreciate if someone explain how can I able to read the variable data in the custom forms. Thank you