The www.webOShelp.net WebOS / Mojo Developers' Forum |
March 25, 2013, 04:50:53 AM | |||
|
Home | Help | Search | Login | Register |
1
on: October 12, 2011, 09:42:25 PM
|
||
Started by choomoOptoste - Last post by choomoOptoste | ||
I am a newbie here! I would like to denouement in on effective friends, deracinate down reborn ideas and learn more knowledge. Requisition you will-power unrestrainedly permitted me here!
|
2
on: September 29, 2011, 10:37:02 AM
|
||
Started by louis84 - Last post by mattbr8812 | ||
I am not sure that this right. I am fairly new to WebOS. Can you guys let me know why you decided to go this route? Thanks for any help you can provide.
|
3
on: September 24, 2011, 02:15:36 PM
|
||
Started by Injemimew - Last post by Injemimew | ||
Excellent share it is without doubt. We have been awaiting for this info.
|
4
on: June 27, 2011, 10:48:43 PM
|
||
Started by louis84 - Last post by fradiy | ||
Well, I too was thinking of suggesting the 123 instead of ABCD since it would mean more logical but I guess that is not working for you. I think the change in the parameter has to be the reason for that issue. I think a good way now that you have failed in using the number sequence would be to build the loop for the first selectors other than ABCDE which should be continued by placing the result of the second one.
|
5
on: April 04, 2011, 03:04:57 AM
|
||
Started by louis84 - Last post by louis84 | ||
Hi all.
I am developing with Ares IDE and have two list selectors, how can i prefilter the second list selector from the result of the first listselector such that if the first contains A, B, C, D and the second contains E,F,G, H on selecting A from the 1st list-selector, the 2nd should be prfiltered to show F & H
Code:
function FinalAssistant(argFromPusher) {
} FinalAssistant.prototype = { setup: function() { Ares.setupSceneAssistant(this); this.controller.listen("listSelector1", Mojo.Event.listSelector1Tap, this.listSelector1Tap.bindAsEventListener(this)); }, cleanup: function() { Ares.cleanupSceneAssistant(this); Mojo.Event.stopListening(this.controller.listSelector1,Mojo.Event.listSelector1Tap,this.listSelector1Tap) }, listSelector1Tap: function(inSender, event) { switch (event.choices.label) { case 'Two': this.listModel2.choices = [{label: "eight"}, {label: "nine"}]; this.controller.modelChanged(this.listModel2); break; case 'One': this.listModel2.choices = [{label: "ten"}]; this.controller.modelChanged(this.listModel2); break; } }, the Mojo Log info error says Mojo.Event.listen 'target' parameter must be defined |
6
on: December 28, 2010, 01:13:22 AM
|
||
Started by Jared5755 - Last post by Leeah | ||
Can you change the background color of a scene using a hex value, is there a possibility that you could change? how let us know the deeper explanation.
|
7
on: December 17, 2010, 01:55:12 PM
|
||
Started by Ken Young - Last post by ShmungerWOS | ||
My name is Shulem Unger. I'm a very quick learner and always loved tech, although I've never learned code.
There are some simple custom apps that i would like for my Palm Pre Plus and therefore I started looking at developing with Ares. well.... I'm still having a hard time. To think, the possibilities I can have with just a few lines of java... But I gotta learn some of it first. (Don't even need to learn all of code, as I'm doing it with Ares. I just need to learn how to make a fully functional app. and so far, that's my bio |
8
WebOS Mojo Development / Mojo Newbies / webview problem (want to read html content of webview widget)
on: December 15, 2010, 05:42:18 AM
|
||
Started by heena_f - Last post by heena_f | ||
hi
i want to read html content of webview widgets is there any property or method which can be used to fetch html of currently open page. Thanks |
9
on: November 06, 2010, 04:00:47 AM
|
||
Started by jon0604 - Last post by jon0604 | ||
can anyone show me how to set a cookie for a list in ares
add to a list and have it remain when closing the app the most basic example would work best so that it is easy to follow and build from there |
10
WebOS Mojo Development / Mojo Tutorials/Sample code/applications / Re: O'Reilly News Reader Challenge
on: November 04, 2010, 02:43:31 AM
|
||
Started by CESantos - Last post by potter_tang | ||
I guess there's not much activity in this forum from knowledgeable developers. I don't see a response to anything in this topic since last October. Thank you for telling us the answer after you have got it from developer.palm forum.
For what its worth, I did get a response in the developer.palm forum. Apparently Eclipse knows nothing about webkit so it flags it as errors. They can be ignored. |