- 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 06:17 AM
Hi @Sirri
If my answer has helped with your question, please mark it as correct and click on helpful
Regards
Yaswanthi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 12:55 AM
Check the UI policy written for the check box applies on the requested item table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2023 12:56 AM
Hi Sirri,
You might have used below code to hide the variables
g_form.setVisible('variable_name', false);
Use the below code instead and it will remove the spaces
g_form.setDisplay('variable_name', false);
Please mark my answer correct if it was helpful.
Thanks,
Utpal