I have a collection that creates a Header row at the top of my app:
I would like to change the fill of the corresponding label to the page as it loads. My collection is as follows:
ClearCollect(
ccHeaderTabNames,
{Tab: "Home"},
{Tab: "My Opus"},
{Tab: "Clients"},
{Tab: "Quotes"},
{Tab: "Search"},
{Tab: "Tools"},
{Tab: "New Ticket"},
{Tab: "New Action"}
);
For example, I simply want to change the fill of the "Home" button when on the Home page to the blue of the secondary row.
Thanks in advance for any assistance!
Solved! Go to Solution.
Theres a fun trick to this one that Laura Rogers showed off way back in the day... Not sure if I can remember off the top of my head, but something like...
Set the tab's Fill Property to:
Switch( ThisItem.tabLabel, "Home", Green, "My Opus, Blue,
"Clients", Gray,
"Quotes"
"Purple",
"LightBlue )
Hope this helps!
Theres a fun trick to this one that Laura Rogers showed off way back in the day... Not sure if I can remember off the top of my head, but something like...
Set the tab's Fill Property to:
Switch( ThisItem.tabLabel, "Home", Green, "My Opus, Blue,
"Clients", Gray,
"Quotes"
"Purple",
"LightBlue )
Hope this helps!
This worked perfectly! Thanks so much!
User | Count |
---|---|
177 | |
116 | |
85 | |
44 | |
41 |
User | Count |
---|---|
241 | |
153 | |
128 | |
77 | |
72 |