neodash icon indicating copy to clipboard operation
neodash copied to clipboard

VULCAN-947/checkbox disable feature based on precondition

Open m-o-n-i-s-h opened this issue 1 year ago • 1 comments

Checkbox disable feature based on precondition

checkbox_disable_feature

We wanted to disable few rows in table report so that user cannot select it. User can add multiple condition.

BONUS You can add double underscore "__" for column names to hide it from table report but you can use it for configuring conditions.

image

MATCH (n:Movie)<-[:ACTED_IN]-(p:Person) RETURN n.title AS title, n.released AS released, count(p) as actors, ID(n) AS__ID

As you can see from the above example we have added __ID and it is hidden in table report.

The program was tested solely for our own use cases, which might differ from yours.)

Signed-off-by: Monish Nandakumaran [email protected] on behalf of Mercedes-Benz Research and Development India

https://github.com/mercedes-benz/mercedes-benz-foss/blob/master/PROVIDER_INFORMATION.md

m-o-n-i-s-h avatar Nov 21 '24 06:11 m-o-n-i-s-h