[TIMOB-10525] Blackberry: Titanium.UI.Window open() crash
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Not Our Bug |
Resolution Date | 2012-09-12T08:32:09.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Sprint 2012-14 BB, BB Preview 3 |
Components | BlackBerry |
Labels | n/a |
Reporter | Hayk Zakaryan |
Assignee | Josh Roesslein |
Created | 2012-08-21T08:24:52.000+0000 |
Updated | 2017-03-03T01:04:27.000+0000 |
Description
When creating two windows under current and trying to open consequentially both application crashes.
Test code is available in KS Window Properties (Resources\ui\common\baseui\window_properties.js lines win1.open(); win2.open())
warning in NCO relating to batchUpdating_
Following Cascade crash brings to this bug: Cascade is crashing at some condition, when we try to access container which belongs to the not root page (not scene). Here is a code sample: 1. Application app(argc, argv); 2. Page *root = new Page; 3. Container *topContainer = new Container; 4. bb::cascades::AbsoluteLayoutProperties* layout = new bb::cascades::AbsoluteLayoutProperties; 5. topContainer->setLayoutProperties(layout); 6. Page *root2 = new Page; 7. Container *topContainer2 = new Container; 8. root->setContent(topContainer); 9. root2->setContent(topContainer2); 10. Application::setScene(root); 11. Application::setScene(root2); 12. topContainer->isVisible(); 13. return Application::exec();
This might be resolved in the latest Cascades version. Need to retest once upgraded to R9.
Closing ticket as Blackberry is no longer supported.