Is it possible to access html element value in jelly script ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2017 02:52 AM
Is it possible to access html element value in jelly script ?
<input type="text" value="car" id="1" />
can this element value can be accesed in jelly set tag to set value ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2017 02:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2017 03:02 AM
Yes Rohith,
\you can the element value.
below is the example written in UI macro:
Short Description: <input id="short_description" type="text"/>
<script>
function setDesc(text){
$j("#short_description").val(text);
}
</script>
You can modify it accordingly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2017 03:24 AM
is it possible to use html element value in value="${}" of jelly set tag
<j:set var="jvar_incident_number" value="${ }"/> ???