We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I load the right window on init. Then later in my app I want to replace it.
var filterWin; function toggleRight(){ if(!filterWin){ filterWin = Ti.UI.createWindow({height: Ti.UI.FILL, width: Ti.UI.FILL, module: "xp.ui", role: "rightWindow", backgroundColor: 'blue'}); $.drawer.setRightWindow(filterWin); } $.drawer.toggleRightWindow(); Ti.API.info("Filter clicked"); }
Added debug code: https://github.com/nitrag/NappDrawer/blob/master/ios/Classes/DkNappDrawerDrawer.m#L264-L268
Result of console:
... [DEBUG] Clearing Right Window [INFO] Filter clicked (((locked up here, no other debug messages, other drawer function no longer work)))
The text was updated successfully, but these errors were encountered:
It appears it is breaking because of this:
https://github.com/nitrag/NappDrawer/blob/master/ios/Classes/DkNappDrawerDrawer.m#L262
if([TiUtils boolValue:args] == 0 ){
Can we rework this? What's a better method to determine if args is a Titanium Window?
Sorry, something went wrong.
Support managing page stack in sidemenu, not working cos of issue in …
92abce8
…Napp viezel/NappDrawer#188
Did you ever find a work around for this?
No branches or pull requests
I load the right window on init. Then later in my app I want to replace it.
Added debug code:
https://github.com/nitrag/NappDrawer/blob/master/ios/Classes/DkNappDrawerDrawer.m#L264-L268
Result of console:
The text was updated successfully, but these errors were encountered: