M
mpiscoso@gmail.com
Guest
I have a code solution for this if you are interested. See below: 1. Generate your link to a record's view page (ex. Link to view page of an object >> {!#LINK.case}) 2. Add a custom parameter at the end (ex. {!#LINK.case}&tab=2) 3. In my example i'm using a number to indicate the tab index, on the view page onload property (obj def > view page > properties) add script to read your custom parameter and load the tab: ex. var currURL = String(window.location.href), tabIndex = parseInt(currURL.split("tab=")[1]); //get tab index from URL if ( !isNaN(tabIndex) ) { //have some sort of checker to handle URLs without custom param rbf_activatePageTab(tabIndex); //Load your tab using the API } From here you just need to generate a URL to your view page and add a custom parameter and value at the end and that could more or less be considered a direct link to one of your tabs. Hope that helps.
Continue reading...
Continue reading...