Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Dynamically adding & hiding a row from a GRID
tinujoseph
I am having a GRID with 2 Columns and 8 rows. First Columns contains label pallet and Second column contains Data set pallet.
On certain condition, like Data set column value is null i want to hide the whole row. Is this achievable with GRID?
Please advice..
Also please suggest some tutorial where i can find setting related to Expression Builder.
Thanks in advance
Find more posts tagged with
Comments
mwilliams
Hi tinujoseph,
I would think you'd be able to do this by checking the value in the expression builder for visibility and setting the value to true or false depending on if the condition is met.
tinujoseph
Thanks Michael
It works...i set the visibility property for each row
vaishnavi
Hi tinujoseph,
Could you please explain some little more regarding your solution,How to set the visibility property for each row?
Regards,
Vaishnavi
mwilliams
Hi Vaishnavi,
You just need to write an if statement in the visibility section of the property editor for the row of the grid that you want to hide. You return the value true if the condition is met to hide the row and you return false if it's not met and you want the row to remain visible.
Hope this helps. Let me know if you have any questions.
tinujoseph
Hi Vaishnavi,
You need to write a condition check for the row(Property Editor Row--> Visibility-->Expression). Return true if the condition satisfy to hide the row else return false.
For example
if(row["Type"]=="" )
true
hope this helps
tinu
vaishnavi
Thanks Michael n tinu for your suggessions...
Regards,
Vaishnavi