courtesy of Doug Reeder:
Mojo presumes there's a keyboard present, and so sets keyboard focus on the first textfield in a scene, unless you call SceneController.setInitialFocusedElement(null). Many developers don't check whether their app is running on a TouchPad,
Ever wanted to change the background image of a palm dialog but all you could accomplish is an ugly rectangle inside of the Palm's Dialog;
Here is your solution:
In your CSS do this:
.palm-dialog-box
{
-webkit-border-image: url(../images/backdrop-dark.png) 32 24 32 24 stretch stretch;
}
where backdrop-dark.png is your image.
Enjoy
Tried to use FilterList widget with a view menu or a normal header? this is a problem because they collided with the filter field once a letter is typed, because the filter field does not honor the height setting.
to over come it , add a class to your FilterListWidget and in the CSS do that:
.[Filter List Class] .filter-field-container {
top: 0px;
left: 0px;
position: fixed;
width: 100%;
height: 100px;
z-index: 0;
}
top: 0px;
left: 0px;
position: fixed;
width: 100%;
height: 100px;
z-index: 0;
}
This will fix this issue.
Nice Ah?