Empty spaces between variable to variable in RITM & Catalog task space showing .

Sirri
Tera Guru

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.

2 ACCEPTED SOLUTIONS

Hi @Sirri 

check the ui policy / client script is having the checkboxes applied on requested item and catalog task table.

View solution in original post

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. 

View solution in original post

7 REPLIES 7

Hi @Sirri 

If my answer has helped with your question, please mark it as correct and click on helpful

 

Regards

Yaswanthi

Selvi Rajendran
Tera Contributor

Check the UI policy written for the check box applies on the requested item table.

Utpal Dutta
Tera Guru

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