How can I decrease the font size of the showAlertDialog title?
how to take screenshots of palm emulator
How can I decrease the font size of the showAlertDialog title?
A (dirty) way is to overwrite the .dialog-title class of the palm css file. But this affects all alert dialogs of your app.
.dialog-title {
font-size:5px !important;
}
A better way is to use your one dialog template with:
this.controller.showDialog({
template: dialogs/sample-dialog ,
assistant: new SampleDialogAssistant(this),
wisdom: randomLorem(),
preventCancel:true
});
See Palm Developer Guide for more information.
how to take screenshots of palm emulator
Just a couple of quick questions...not too hard to answer hopefully! How do I set the allowed orientation from scene to scene? I can set it for the entire stage with: this.controller....
I m trying to debug a javascript-heavy webapp running on the Palm Pre browser. There are various useful debugging messages that the app will output to console.log(). This app was not built ...
How can I set the dault language of an WebOs project? The standard way of adding internationalization in WebOS is to use the $L() function, where I can set a key to the translated string. But if the ...
How can I decrease the font size of the showAlertDialog title?
push scene by tapping on image. i am using one image when i am tap that image i want to push the new scene. it is not working. is there any way to push the scene when tap on image controle it showing ...
How do I set value dynamically to the integerpicker?
With the release of the Closure compiler, I was hoping to see if there was a difference in memory usage between a js file using the compiler and one which had not. In particular, on a mobile ...