Hello,
I want to display a breadcrumb navigation message under a gallery. I have checked the examples on the forum, but in my case there is no "back" button, so I can remove a value from the breadcrumb if the user clicks again on a previous menu from the gallery. The user can navigate through the menu with no restriction of the order.
For example, if a user clicks on Contract, then Producer>Contract is displayed. If the user clicks back on Producer and then again on Contract, then Producer>Contract>Contract will be displayed.
Do you have any hint on how this can be made?
Thank you.
Regards,.
Solved! Go to Solution.
Hi,
I think you can achieve it as below:
1. On app start property = Set(varBreadCrumB,"");
2. On Select of Property = Set(varBreadCrumB,"Property"); //Since Property is first tab always it should be property
3. On Select of Contract = if(IsBlank(varBreadCrumB),"Contract",if(IsMatch(varBreadCrumB, "Producer", Contains ),"","Producer > Contract")); //If variable already has Property (means it came from property not directly, Contract already exists then don't add if not then add.
follow same for another tabs as well. Please let me know if you have any further questions.
if this answers your question mark it as verified and give thms
Hi,
I think you can achieve it as below:
1. On app start property = Set(varBreadCrumB,"");
2. On Select of Property = Set(varBreadCrumB,"Property"); //Since Property is first tab always it should be property
3. On Select of Contract = if(IsBlank(varBreadCrumB),"Contract",if(IsMatch(varBreadCrumB, "Producer", Contains ),"","Producer > Contract")); //If variable already has Property (means it came from property not directly, Contract already exists then don't add if not then add.
follow same for another tabs as well. Please let me know if you have any further questions.
if this answers your question mark it as verified and give thms
Hi,
I think you can achieve it as below:
1. On app start property = Set(varBreadCrumB,"");
2. On Select of Property = Set(varBreadCrumB,"Property"); //Since Property is first tab always it should be property
3. On Select of Contract = if(IsBlank(varBreadCrumB),"Contract",if(IsMatch(varBreadCrumB, "Producer", Contains ),"","Producer > Contract")); //If variable already has Property (means it came from property not directly, Contract already exists then don't add if not then add.
follow same for another tabs as well. Please let me know if you have any further questions.
if this answers your question mark it as verified and give thms
User | Count |
---|---|
161 | |
85 | |
68 | |
63 | |
61 |
User | Count |
---|---|
212 | |
146 | |
93 | |
81 | |
67 |