Hi
I have a dynamic visio which automatically populate multiple service names in a view. The visio is using ChildType and ChildMargin.
Now i would like to hide some of the services on the condition that:
if the custom property of a service (e.g., customProp) = HIDEpls, the visio mimic will hide or doesn't show the service name in the visio service list.
I tried to use childrenFilter like following:
(my logic is to show any service that its custom property doesn't have the "HIDEpls" string):
PROPERTY:customProp=^((?!HIDEpls).)*$
The above method seems work in some services (some services' customProp is empty and some have different strings, they can be shown in the service list), but some services with empty string customProp also got hidden by the system. I don't know where is the problem. Is my regex incorrect?
Thanks
Hi Miao,
Maybe I can first ask if for those that are empty, could you verify that the property exist on them? If the property doesn't exist, the filter will not work on it.
If they exist, one thing you can do with the regex is try ^(?!HIDEpls).*$ .
Hope this will help you.
Kind regards
I see that this question has been inactive for some time. Have you found a solution for this yet? If yes, could you select the answer (using the ✓ icon)?