- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 12:47 AM
Hi All,
In catalog item based on requested for some variables or visible false we have kepted the condition. but after raising we have observing the space in between the variabes.
please let us know how we can modify with out space.
please find the attached documents for reference.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 01:32 AM
Hi @Sirri
check the ui policy / client script is having the checkboxes applied on requested item and catalog task table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 06:11 AM
Hi@yaswanthi2 ,
Thankyou so much.
Yes in client script RITM & catalog task checkboxes are checked. That check box are required.
In the script they used the setvisible. I'm replace instead of setVisible() with setDisplay().Now it's working fine .
Thank you for your response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 12:53 AM - edited 11-06-2023 12:58 AM
Hi @Sirri
Try switching your g_form.setVisible('variable_name', false) to g_form.setDisplay('variable_name', false)
Set Visible:
Hides the field if false.
If the field is hidden, the space is left blank. This method cannot hide mandatory fields with no value.
Set Display
Displays the field if true. Hides the field if false. This method cannot hide mandatory fields with no value.
If the field is hidden, the space is used to display other items.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 01:08 AM
for empty blanks also required to visible. for more reference please find the attached documents.
based on the catalog item view we should want to visible variables on the RITM & catalog task.
please let us know how can i achieve this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 01:32 AM
Hi @Sirri
check the ui policy / client script is having the checkboxes applied on requested item and catalog task table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 06:11 AM
Hi@yaswanthi2 ,
Thankyou so much.
Yes in client script RITM & catalog task checkboxes are checked. That check box are required.
In the script they used the setvisible. I'm replace instead of setVisible() with setDisplay().Now it's working fine .
Thank you for your response.