[TIMOB-630] Android: TabGroup stops window being re-shown
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Won't Do |
Resolution Date | 2018-08-02T17:06:41.000+0000 |
Affected Version/s | Release 1.7.2, Release 2.0.1, Release 3.0.0, Release 3.2.0 |
Fix Version/s | n/a |
Components | Android |
Labels | exalture |
Reporter | Jon Alter |
Assignee | Ingo Muschenetz |
Created | 2011-04-15T02:33:13.000+0000 |
Updated | 2018-08-02T17:08:41.000+0000 |
Description
start with a standalone window that fires an event, a listener in app.js then closes the window and opens a tabgroup (think logon window) - all good. the tabgroup fires an event which is listened to in app.js which closes the tabgroup and opens the initial window. This fails - the tabgroup goes away, logging shows the original window is being re-built, but it is never shown. It is shown in iPhone. Pseudo code for app.js...
var loginWin;
var logoutGroup;
function makeLoginWindow() {
loginWin = window with single button firing LOGIN event;
loginWin.open();
}
function makeLogoutWindow() {
logoutGroup = tabGroup containing one window with...
single button firing LOGOUT event;
logoutGroup.close();
}
makeLoginWindow()
addEventListener(LOGIN) {
loginWin.close();
makeLogoutWindow();
}
addEventListener(LOGOUT) {
logoutGroup.close();
makeLoginWindow();
}
* Should this work?
* Should I raise this sort of thing as a query or ask in the forums in future?
Attachments
File | Date | Size |
---|---|---|
testi.zip | 2011-04-15T02:33:14.000+0000 | 1396 |