1: <?php
2: /**
3: * Spinner Base File
4: *
5: * The QSpinnerBase class defined here provides an interface between the generated
6: * QSpinnerGen class, and QCubed. This file is part of the core and will be overwritten
7: * when you update QCubed. To override, make your changes to the QSpinner.class.php file in
8: * the controls folder instead.
9: *
10: *
11: */
12:
13: /**
14: *
15: * Implements a JQuery UI Spinner Object
16: *
17: * A spinner object is a field that is accompanied by up/down arrows to allow numeric or
18: * numberic like values to be quickly selected. You can specify how the arrows step,
19: * and also specify a step value for page up and page down keys.
20: *
21: * TBD: Create options to have this return a particular QCubed Type
22: *
23: * @link http://jqueryui.com/spinner/
24: * @package Controls\Base
25: *
26: */
27: class QSpinnerBase extends QSpinnerGen
28: {
29: }