/**
  * Constructor
  * @param QControl|QForm $objParentObject
  * @param null|string    $strControlId
  */
 public function __construct($objParentObject, $strControlId = null)
 {
     parent::__construct($objParentObject, $strControlId);
     $this->CssClass = 'paginator';
     //$this->strLabelForPrevious = QApplication::Translate('<<');
     //$this->strLabelForNext = QApplication::Translate('>>');
 }
예제 #2
0
 public function __construct($objParent, $strControlId = null)
 {
     parent::__construct($objParent, $strControlId);
     // Default to a very compat format.
     $this->strLabelForPrevious = '&laquo;';
     $this->strLabelForNext = '&raquo;';
 }
예제 #3
0
 /**
  * Constructor
  * @param QControl|QForm $objParentObject
  * @param null|string    $strControlId
  */
 public function __construct($objParentObject, $strControlId = null)
 {
     parent::__construct($objParentObject, $strControlId);
     $this->strLabelForPrevious = QApplication::Translate('Previous');
     $this->strLabelForNext = QApplication::Translate('Next');
 }