Hello,
I used @RezaDorrani solution to create a tabbed form in my Canvas App NOT a SharePoint Integration form.
Reza's solution is here!
This solution worked great but one thing that I can't solve is colorizing each tab to match the fill of each form.
Does anyone have any ideas they can share?
Thank you.
Yes, I suppose I could have separate forms for each chosen tab.
The process I am using now seemed to be a better fit for what I was trying to achieve.
It does look like they are different forms so technically its true there isn't multiple forms.
It sounds like I may have to rethink my design. 🤔
@golfnutt82
"but one thing that I can't solve is colorizing each tab to match the fill of each form"
Your post suggests you have more than one form?!
What should the colour of each tab be then if you only have one form?
The Gallery has a table that looks as follows:
Table({ID:1,Label:"Broker Fee Request"},{ID:1,Label:"Funding Team"},{ID:1,Label:"Next Steps"},{ID:1,Label:"Operations Group"},{ID:1,Label:"Attachments"},
In the OnSelect property I set a variable Set(varTabSelected,ThisItemID)
In the Visible property on the DataCard I then reference the variable to show or hide the DataCard based on the chosen tab at the top. varTabSelected=1, varTabSelected=2, varTabSelected=3 and so on
Using your suggestion doesn't work under the TemplateFill property because I only have one form.
Unless, I am missing something, please provide more context.
Thanks!
Thanks DJ,
I will give this a shot and follow up.
Hi @golfnutt82
If you are using a gallery to drive the tabs, use the TemplateFill property.
Switch(
ThisItem.TAB_COLUMN_NAME,
"Tab A", Form1.Fill,
"Tab B", Form2.Fill,
"Tab C", Form3.Fill
}
...and so on for however many tabs and forms you have.
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1