Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
Hi Team,
How to disable clickable event on tree parent node?
Here PlantArea1, PlantArea2, PlantArea3 need to make disable clickable ? Rest Asset are clickable.
Solved! Go to Solution.
There's no Out-Of-The-Box feature for this, but just don't do nothing on the binded service when the Node it's not the desired one.
There's no Out-Of-The-Box feature for this, but just don't do nothing on the binded service when the Node it's not the desired one.
You can add a Validator Widget, which receives SelectedRow parameter which indicates if it's a Clickable Node or not, then you just need to return on Validator Widget the SelectedRow value and use True event from Validator Widget as Click event for the tree.
Thanks for advice.
Could you please clarify the problem description/provide the use case?
I need to avoid clickable event on selected PlantArea1, PlantArea2,PlantArea3.
Is any way we can do it by code?
It is not possible. You may do what Carles Coll suggested above on an empty service. Or you may look into custom extensibility/tailoring the widget to your taste through development.