[TIMOB-25685] Android: TabGroup 'close' event is never fired
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2018-05-23T22:18:00.000+0000 |
| Affected Version/s | Release 7.0.0 |
| Fix Version/s | Release 7.3.0 |
| Components | Android |
| Labels | n/a |
| Reporter | Gary Mathews |
| Assignee | Gary Mathews |
| Created | 2018-01-19T00:19:41.000+0000 |
| Updated | 2018-06-28T21:04:00.000+0000 |
Description
-
Titanium.UI.TabGroup never fires close event
var win = Ti.UI.createWindow(),
tabGroup = Ti.UI.createTabGroup();
tab = Ti.UI.createTab({
title: 'Tab',
window: win
});
tabGroup.addEventListener('close', function () {
console.log('TabGroup.close()');
});
tabGroup.addTab(tab);
tabGroup.open();
master: https://github.com/appcelerator/titanium_mobile/pull/9758
FR Passed. Waiting for the final corrections to be made to the PR & merge to get enabled.
Verified the fix in SDK 7.3.0.v20180628132121. Closing.