
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2022 08:25 AM
Hello,
I can't set a new Focus on the different tabs of the incident page (ex : When the status is resolved the Resolution Information tab is displayed)
I found the script that could apply it but impossible to make it work with a script client.. I don't know what I'm doing wrong.
Someone would know how to do this and guide me?
Thank you !
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2022 10:17 AM
Super efficient !
Here the script at the end.
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if(newValue == 6) {
g_tabs2Sections.setActive(2); //Resolution Information tab
}
}
Thanks a lot for your help !

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-22-2022 10:17 AM
Super efficient !
Here the script at the end.
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if(newValue == 6) {
g_tabs2Sections.setActive(2); //Resolution Information tab
}
}
Thanks a lot for your help !