Tabpanels misbehaving in Chrome
Posted: Tue Nov 28, 2017 7:39 pm
Wondered if anyone has experienced a problem with tab panels in Chrome. In our Customer Master file maintenance, a customer's data is organized on 3 panels / tabs of a tab panel. When I select a customer to maintain, all 3 panels' data is displayed at once on the first panel... so it's all jumbled up. If I then click on each of the 3 panels, then everything gets sorted out (the data appears on the correct panel). It will stay that way until I exit and select another Customer record OR I press a function key to call another program and then return to the current Customer record. When I return to the current Customer record, the data
On the "onload" event of the Customer screen, I have the following code:
var lastTab = sessionStorage.getItem("CCD100B_LASTTAB");
if (lastTab) {
setTab("TabPanel1", lastTab);
}
I temporarily deactivated the JS code, but the above problem still occurs. This has been working fine all along in Firefox and IE / Edge so I don't think it's the script. Since I generally use Edge, I wasn't aware that this was happening until about a month ago. I'm guessing it may be a setting in Chrome but haven't found anything regarding this online. Any thoughts?
On the "onload" event of the Customer screen, I have the following code:
var lastTab = sessionStorage.getItem("CCD100B_LASTTAB");
if (lastTab) {
setTab("TabPanel1", lastTab);
}
I temporarily deactivated the JS code, but the above problem still occurs. This has been working fine all along in Firefox and IE / Edge so I don't think it's the script. Since I generally use Edge, I wasn't aware that this was happening until about a month ago. I'm guessing it may be a setting in Chrome but haven't found anything regarding this online. Any thoughts?