- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2016 01:03 PM
I am frequently working to build/modify jelly pages or popups.
I am currently trying to find out how to put in a multi-line input field. Is there any list I can reference for available field/form types?
I am only aware of things that I've found in pre-existing ui pages, and I have been able to implement them elsewhere, but it would be nice to have a place to find all those available to me.
The things I know of are just those on the wiki page http://wiki.servicenow.com/index.php?title=Extensions_to_Jelly_Syntax#.3Cg:ui_form.2F.3E
<g:ui_reference>
<g:form_label>
<g:ui_checkbox>
<g:ui_input_field> ---- can I just use this one, and add some attribute to make it multi line?
etc...
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2016 01:23 PM
use <g:ui_multiline_input_field>. In your instance, go to ui macro and search for name starts with ui_. You will get all the macros you can use.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2016 01:21 PM
Hi Simon,
g:ui is referring to ui macros. That is one of the ways you can add a ui macro to your ui page. UI Macros are reusable pieces of jelly that can be added to a ui page.
Look under ui macros and search for name startwith ui_ and you will see all of the OOB types. There is one for ui_multiline_input_field.
Of course you can create your own. From my experience when I have created a new ui macro. I have had to manually flush the cache before my ui page actually calls it into the page.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-17-2016 01:23 PM