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,...
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...