Reputation: 39
Is it possible to filter MOVELET based on string from another MOVELETS using MEL code? I had tried with setMoveletFilter()
of MEL but it is not suitable for my requirement. Filter criteria is on another movelet. Based on that criteria I need to show Movelets on menu.
Do we have any way to do it as my requirement?
Upvotes: 1
Views: 119
Reputation: 46
You can use the visibleExpression element. If the expression equals false the Movelet is invisible and if the expression equals true the Movelet is visible. This expression can also be a method like strEquals
Upvotes: 3