source: Dev/trunk/src/client/dojox/mobile/ValuePicker.js @ 532

Last change on this file since 532 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 888 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./_PickerBase",
4        "./ValuePickerSlot" // to load ValuePickerSlot for you (no direct references)
5], function(declare, PickerBase){
6
7        // module:
8        //              dojox/mobile/ValuePicker
9
10        return declare("dojox.mobile.ValuePicker", PickerBase, {
11                // summary:
12                //              A value picker that has a stepper.
13                // description:
14                //              ValuePicker is a widget for selecting values. The values
15                //              can be selected by using the Plus or Minus buttons, or by
16                //              entering the value directly into the input field.
17                //              This type of value picker is typically seen on Android devices.
18
19                /* internal properties */       
20                baseClass: "mblValuePicker",
21
22                onValueChanged: function(/*dojox/mobile/ValuePickerSlot*/slot){
23                        // summary:
24                        //              Callback when the slot value is changed.
25                        // slot:
26                        //              The slot widget whose value has been changed.
27                        // tags:
28                        //              callback
29                }
30        });
31});
Note: See TracBrowser for help on using the repository browser.