* @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; /** * TDataGridPagerButtonType class. * TDataGridPagerButtonType defines the enumerable type for the possible types of datagrid pager buttons. * * The following enumerable values are defined: * - LinkButton: link buttons * - PushButton: form submit buttons * * @author Qiang Xue * @package Prado\Web\UI\WebControls * @since 3.0.4 */ class TDataGridPagerButtonType extends TEnumerable { const LinkButton='LinkButton'; const PushButton='PushButton'; }