[TIMOB-4281] splitWindow not opening window URL
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2017-06-05T21:10:51.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | ipad |
Reporter | Matthew Apperson |
Assignee | Ingo Muschenetz |
Created | 2011-06-01T14:51:02.000+0000 |
Updated | 2017-06-05T21:10:51.000+0000 |
Description
When using a url for the window in a splitWindow, the window gets added, but the js file in the URL is not run/opened
var orientation_modes = [Titanium.UI.LANDSCAPE_LEFT,Titanium.UI.LANDSCAPE_RIGHT];
masterWindow = Ti.UI.createWindow({
orientationModes:orientation_modes,
url:'master.js' //or any js file
});
detailWindow = Ti.UI.createWindow({
orientationModes:orientation_modes,
url:'detail.js' //or any js file
});
splitView = Ti.UI.iPad.createSplitWindow({
masterView: masterWindow,
detailView: detailWindow
});
splitView.open();
Closing ticket due to the time passed and lack of progress over the past few years.