I trying to create a modal window that when opens will cover approx 80% of the previous window. The screen that I'm getting is fullscreen, completely covering the prior screen and displays the nav bar even though I have set navBar set to false.
Here is the code.
imageInfo.addEventListener('click',function(e) { var PreQualInfoWindow = require('ui/common/PreQualInfoWindow'); new PreQualInfoWindow().open(); });PreQualInfoWindow
function PreQualInfoWindow() { var win = Ti.UI.createWindow({ modal: true, navbarHidden: true, height: '600dp', width: '600dp', backgroundColor: 'white', }); return win; }; module.exports = PreQualInfoWindow;Any help would be greatly appreciated.
Build 2.1.1.201207271312
1 Answer
Accepted Answer
Mind your humps:
navBarHidden: true
Your Answer
Think you can help? Login to answer this question!