What I’m trying to do:
Since I cannot figure out how to implement just a time picker component (I saw a datetime component, but I do not need datetime, I just need time), I am using a custom HTML form where I’ve created a custom time picker along with a couple of drop down boxes. I’ve added the custom HTML form as a component and I’ve dropped the component into my main form, but I don’t know how to access the values from the dropdown box and time input html inputs. I also don’t see very clear instructions that would help me with this in the documentation.
What I’ve tried and what’s not working:
I’ve looked through the documentation, but I do not see anything that explains how to do what I’m trying to do.
HTML code Sample:
<label for="event_time_input">Input Time</label>
<input type="time" id="event_time_input" name="time_input">
<label for="duration_input">Duration (minutes)</label>
<select id="duration_input>
<option value="ten_minutes">10</option>
</select>
How do I access the input forms from this custom html component from my main forms?