WebOSDev - Programming has just evolved

The online blog for the webOS developer community you can find everything you need here to get a strong start developing applications for the webOS platform

How to capture click on itemTemplate on FilterList

Posted by codesos Thursday, October 15, 2009 0 comments
Here are some tips regurding capturing "tap" events on itemTemplate on FilterList. 1. Define HTML Mojo object <div x-mojo-element="FilterList" class="filterlistClass" id="filterlistID" x-mojo-focus-highlight="true"></div> 2. Difine the "filterlistID" in the .js file. var attributes = { itemTemplate: 'food-filter-list/entry', swipeToDelete: bSwipeToDelete, reorderable: false, filterFunction: this.list.bind(this), formatters:{Food_Item:this.formatName.bind(this),Points:this.formatNumber.bind(this)}, delay: 500,...

The FloatPicker

Posted by codesos 13 comments
Ever thought about why the mojo SDK doesn't contain a  floatPicker? So did I. With a little code changes and some thought  i present to you: The Float Picker Usage: HTML : <div id="FloatPickerID" x-mojo-element="FloatPicker"></div> JS : ****.prototype.setup = function() {     attributes = {             label:    'Float', // the label next to the control             min: 0, // minimum...
v 1.2 comes with .palm-dialog-box .label.left.mv-picker-label {display: none;}in global-widget-mvpicker.cssto overcome this changed in your css:.palm-dialog-box .label.left.mv-picker-label {display: block...
SDK version 1.2 issue The problem happens when you try to call those dialogs from within a dialog created via this.controller.showDialog(...) with preventCancel: true. changing it to preventCancel: false Fixed the probl...