How to hide some fields from the table

shaik_irfan
Tera Guru

Hello Everyone,

We have a requirement where i need to hide some fields from Customized table since we do not Active checkbox option i think i need to write some script to hide the fields.

Can anyone please help me out how to achieve this   ?

List of field what i have is:

Network-ABA

Network-Operations

Network-Infra-Su

Network-Infra-Mu

Network-Infra-Ku

Network-Infra-Zoa

Network-Software

Network-Hardware

Network-Admin

I want to hide the fields which starts from Network-Infra:

Network-Infra-Su

Network-Infra-Mu

Network-Infra-Ku

Network-Infra-Zoa

1 ACCEPTED SOLUTION

Please create Before Query Business Rule with below code, it should work.



(function executeRule(current, previous /*null when async*/) {


// Add your code here


current.addQuery("<FIELD NAME WHICH HOLD THE VALUE>",'NOT LIKE' ,'%Network-Infra%');


})(current, previous);


View solution in original post

18 REPLIES 18

Hi Shaik,



You can try removeOption(fieldName, choiceValue) in onload client script


Please create Before Query Business Rule with below code, it should work.



(function executeRule(current, previous /*null when async*/) {


// Add your code here


current.addQuery("<FIELD NAME WHICH HOLD THE VALUE>",'NOT LIKE' ,'%Network-Infra%');


})(current, previous);


Did that help?


Yup that helped