- 01-14-2013, 07:29 PM
Thread Author #1
Looking for specific webworks sample (bb.pushscreen)
I've scoured the github, but I can't find a decent sample of bb.pushscreen (part of bbui.js).
Specifically, I'm looking for info on passing parameters. Tim Neil posted a sample that will pass a variable and display it in a popup box from bb.init. But I can't find a way to access these parameters outside of bb.init.
Anyone have any experience with this? - 01-14-2013, 07:52 PM #2
I have no idea but I tweeted this thread for you in case someone will see it and offer up some help.
Excuse me, I'm making perfect sense. You're just not keeping up.
.::[CrackBerry Unlocking]::.
.::[CaptureIt OTA]::.
- 01-14-2013, 08:16 PM #3
Hey Mike,
So here's one way that you can do this (I'm not at a computer I can test this on, but it *should* work. If not let me know)
When you do pushScreen you can specify a 3rd optional parameter, as you already know.
You're correct that you have to read this 3rd param inside the bb.init method. You should be able to set this as a global variable from there however, like so...Code:bb.pushScreen('thePage.html', 'theID', 'myParams');
Code:bb.init({ onscreenready: function(element, id) { }, ondomready: function(element, id, params) { console.log('html page: ' + element); console.log('id: ' + id); console.log('params: ' + params); // set params as a global variable so you can access it from wherevs... myPageParams = params; } });---
Chad Tetreault (@chadtatro)
Developer Relations @ RIM (HTML5/WebWorks) - 01-14-2013, 08:28 PM
Thread Author #4
Perfect!
Thanks Bla1ze and Chad, this is exactly what I was looking for!
If anyone else turns up this topic during a search, I also found some more useful info about bb.init here: Using bbUI's onscreenready and ondomready to Dynamically Change Your HTML
Similar Threads
-
Looking for specific app
By shedrock in forum BlackBerry OS AppsReplies: 10Last Post: 07-15-2009, 06:05 AM -
Looking for specific game
By BBA in forum Storm 3rd Party AppsReplies: 1Last Post: 05-06-2009, 05:22 AM -
Looking For Specific Wallpapers...
By ucsdgirl04 in forum BBOS WallpapersReplies: 11Last Post: 12-16-2008, 06:49 PM -
looking for specific Bold background
By deuceap610 in forum BlackBerry Bold 9000Replies: 1Last Post: 11-04-2008, 07:22 PM -
Looking for specific TODAY theme criteria - Have SEARCHED!
By jbradley2093 in forum BlackBerry Curve 83xx ThemesReplies: 7Last Post: 08-31-2008, 07:42 PM

Reply















