Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
I have 2 containers each contain 18 tables and I want to hide and show table tables as per selections of filters. to achieve this I conditionally show each table but my application is not responding.
is there another solution to achieve this???
Hi,
Thanks for the reply,
attached is the dummy example of my requirement.
It sounds like you want to control the current visible object in the container from selections in your data model. AFAIK, this is not possible. There is no action to set the current object.
It may be possible with macro code, but I would suggest that you drop the containers and rely on conditional display of the relevant objects based on the current selections and/or selection activity.
I believe using Container it won't.
it worked for 1 container but when I use the same condition for objects of the 2nd container the application stopped working.
it worked for 1 container but when I use the same condition for objects of the 2nd container the application stopped working.
Can you explain little more, What are you trying?
Sounds like what you're trying to do is outside the scope of what containers are capable of. You could get around the issue by using buttons designed to look like containers, with show/hide conditions and variables.
I am not hiding the container, I am hiding straight tables of that container.
Hi,
You can try this
In each of your straight table you can show conditionaly
Layout>>Show>>Conditional>> if((GetFieldSelections(Name)='XYZ' ),1,0)
Thanks