1: <?php
2: /**
3: * QDatepickerBox
4: *
5: * Put your customizations of the standard behavior here.
6: *
7: * @package Controls
8: * @filesource
9: */
10:
11: /**
12: * Creates the jQuery Datepicker control (with a textbox)
13: *
14: * It extends the QDatepickerBoxBase class.
15: * When writing your code, use this class instead of QDatepickerBoxBase.
16: * This class is intended to be modified by the developer to add functions and alter the already present functions.
17: * Put your customizations to the standard behavior of QDatepickerBoxBase class in this class.
18: *
19: * The difference between QDatepicker class and this class is that QDatepicker will create only the jQuery
20: * control to select the date. This class will create a textbox which when clicked presents the datepicker
21: * and allows you to get the date selected in the datepicker as a string in the textbox.
22: * @package Controls
23: * @author Qcubed
24: * @copyright
25: * @version 2011
26: * @access public
27: */
28: class QDatepickerBox extends QDatepickerBoxBase
29: {
30: }