- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 09:11 AM
Hi All
i want to create a Time picker variable type in catalog form for that i configured widget it's working fine as time picker but i want to set default time as 12:00 AM. Default time was not working please help for this.
<div class= "time-picker-container">
<label for = "timeInput">Event End Time :</label>
<input
id="timeInput"
type ="time"
ng-model= "c.data.timeValue"
class = "form-control"
required
/>
</div>
Solved! Go to Solution.
- Labels:
-
Agent Workspace

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 09:50 AM
@poco Try to use value parameter in html script.
HTML Updated script:
<div class= "time-picker-container">
<label for = "timeInput">Event End Time :</label>
<input
id="timeInput"
type ="time"
ng-model= "c.data.timeValue"
class = "form-control"
required
value = "00:00"
/>
</div>
Reference:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time
Thanks,
Harsh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 09:50 AM
@poco Try to use value parameter in html script.
HTML Updated script:
<div class= "time-picker-container">
<label for = "timeInput">Event End Time :</label>
<input
id="timeInput"
type ="time"
ng-model= "c.data.timeValue"
class = "form-control"
required
value = "00:00"
/>
</div>
Reference:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time
Thanks,
Harsh