hi,
I don’t think it’s possible, but just to be sure
I put a tabpanel with an OnShow related method that checks a category field and, depending on which value it contains, shows certain fields and hides other.
The records in the tabpanel are shown in list view
The problems come if I have two (or more) records belonging to different categories: in this case, the method takes the value of the first record on the tab and applies the same procedure to all the remaining records, even if they have another category.
For instance:
category = “subscriber” → subscriptiondate = visible; description = invisible
category = “contact” → subscriptiondate = invisible; description = visible
If the first record is a contact and the second is a subscriber, I don’t see the field subscriptiondate in the second.
What do you think: is it possible? With a loop, maybe?
Thanks