Also it is not switching content dynamically. I mean, when clicking a row on the left, the right side tab content is NOT getting updated automatically though I’ve set to get the content from the grid selectedItem.
Did you try tabSheet.setSelectedTab? This pushes the selected tab to the Tabs component, which should take care of deselecting other tabs.
Using tab.setSelected only pushes the state only to it self.
When user clicks, I set the tabSheet.setSelectedTab(OVERVIEW_TAB); but the tab shows old data. It is not even entering its Component method to fetch the latest row details. Since I’ve these challenges I moved to the classic Tab component. In that switching is not working always.
When user clicks on a grid row, the first tab is set selected to true and when clicking the next tab, it is not switching. The user has to click first tab and then the other, then it works which seems not correct. Not sure what is the right way to achieve this