- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2016 04:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2016 02:18 PM
You can also use this tag:
<g:ui_date_time id= "${jvar_name}" value= "${jvar_name}" />
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2016 04:29 AM
Hi,
You can use normal input controls with type as "datetime", This will automatically render datetime controls.
input class="inputcntrl" id="StartDate" name="StartDate" type="datetime">
</input>

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2016 04:42 AM
Hi Hasna,
You can use type such as date or time in input tags same as javascript in Jelly.
<input type="date" size="20" />
or <input type="time" size="20" />
Hope it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2016 04:42 AM
you can use g:evaluate tag for the same. You can use normal gs date time function in g:evaluate tag.
for more detail, visit below link :
http://wiki.servicenow.com/index.php?title=Extensions_to_Jelly_Syntax#gsc.tab=0
Thanks,
Param
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2016 09:52 AM
I used 'g:ui_date' and it did work for me as a charm.
<g:ui_date name="start_date" value="${sysparm_start_date}" />
Thank you all!