Skuid detail page in salesforce console: tab title shows as 'external page'
Hi,
I am displaying a skuid detail page for cases successfully in the service console in a main tab. However, the name of the tab is not populated using the case number, but 'External Page'.
Even if in the console app I change the case display to subtab, the subtab is named 'External Page'.
In the visualforce container that is used as view-override, I am setting the title property as {!Case.CaseNumber}. The skuid page itself also uses a page title element.
Please advise.
Bernd
I am displaying a skuid detail page for cases successfully in the service console in a main tab. However, the name of the tab is not populated using the case number, but 'External Page'.
Even if in the console app I change the case display to subtab, the subtab is named 'External Page'.
In the visualforce container that is used as view-override, I am setting the title property as {!Case.CaseNumber}. The skuid page itself also uses a page title element.
Please advise.
Bernd
2
Categories
- 7.9K Questions
- 926 Ideas
- 220 Discussion Categories
- 178 General
- 9 Community Feedback
- 3 Community Info
- 18 Knowledge Base
Comments
Can you include screenshots of what you are seeing and what is on the builder? Specifically, what's tin the tab nad the page title?
Thanks!
Karen
I then found this article which provided this code for the Visualforce page, which fixed my problem:
https://help.salesforce.com/articleView?id=000205552&type=1
<apex:includeScript value="/support/console/20.0/integration.js"/>
<script type="text/javascript">
function testSetTabTitle() {
//Set the current tab's title
sforce.console.setTabTitle('Lead: {!Lead.Name}');
}
var pageLoad = window.onload;
window.onload = function() {
if (pageLoad) {
pageLoad();
}
testSetTabTitle();
}
</script>
I hope this helps.
Thanks for sharing how you fixed the problem! Bernd, does this help fix your page?
Thanks!
Karen
Hi Karen, Michael,
this sounds very promising. I plan to check it on Friday. Thanks for your reply !
Regards
Bernd
Hi Karen, Michael - again,
I just tested it right away - and: it works ! You see the page opening as 'External Page' and then immediately refreshing the title to the desired value.
Thank you
Bernd