I have an Apex 20.2 page with parent/child interactive grids. When the page is generated, the navigation bar displays information about the selected parent IG row. The IG contains family members. When a new family member is selected, all child IGs refresh. This works great. But the navigation bar still shows the family member information when the page was initially loaded. I use a Selection Change Dynamic action to do various things, and have tried to include the following to change the Navigation Bar:
$(.t-Header-navBar .t-Button-label).text("Hiya");
But the above code changes every t-Button-label class list element of the navBar to 'Hiya', and I only want to change a single label. Is there a way I can either parse through all elements of the navBar unordered list, or specifically target the text change to a specified UL list entry?
Thanks in advance!
Phil