* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package Prado\Web\UI\WebControls */ namespace Prado\Web\UI\WebControls; /** * TDatePickerInputMode class. * TDatePickerInputMode defines the enumerable type for the possible datepicker input methods. * * The following enumerable values are defined: * - TextBox: text boxes are used to input date values * - DropDownList: dropdown lists are used to pick up date values * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class TDatePickerInputMode extends \Prado\TEnumerable { const TextBox='TextBox'; const DropDownList='DropDownList'; }