Ejemplo n.º 1
0
 protected function Form_Create()
 {
     // Setup DataGrid Columns
     $this->colEditLinkColumn = new QDataGridColumn(QApplication::Translate('Edit'), '<?= $_FORM->dtgCountry_EditLinkColumn_Render($_ITEM) ?>');
     $this->colEditLinkColumn->HtmlEntities = false;
     $this->colCountryId = new QDataGridColumn(QApplication::Translate('Country Id'), '<?= $_ITEM->CountryId; ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->CountryId), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->CountryId, false)));
     $this->colShortDescription = new QDataGridColumn(QApplication::Translate('Short Description'), '<?= QString::Truncate($_ITEM->ShortDescription, 200); ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->ShortDescription), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->ShortDescription, false)));
     $this->colAbbreviation = new QDataGridColumn(QApplication::Translate('Abbreviation'), '<?= QString::Truncate($_ITEM->Abbreviation, 200); ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->Abbreviation), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->Abbreviation, false)));
     $this->colStateFlag = new QDataGridColumn(QApplication::Translate('State Flag'), '<?= ($_ITEM->StateFlag) ? "true" : "false" ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->StateFlag), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->StateFlag, false)));
     $this->colProvinceFlag = new QDataGridColumn(QApplication::Translate('Province Flag'), '<?= ($_ITEM->ProvinceFlag) ? "true" : "false" ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->ProvinceFlag), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->ProvinceFlag, false)));
     // Setup DataGrid
     $this->dtgCountry = new QDataGrid($this);
     $this->dtgCountry->CellSpacing = 0;
     $this->dtgCountry->CellPadding = 4;
     $this->dtgCountry->BorderStyle = QBorderStyle::Solid;
     $this->dtgCountry->BorderWidth = 1;
     $this->dtgCountry->GridLines = QGridLines::Both;
     // Datagrid Paginator
     $this->dtgCountry->Paginator = new QPaginator($this->dtgCountry);
     $this->dtgCountry->ItemsPerPage = 10;
     // Specify Whether or Not to Refresh using Ajax
     $this->dtgCountry->UseAjax = false;
     // Specify the local databind method this datagrid will use
     $this->dtgCountry->SetDataBinder('dtgCountry_Bind');
     $this->dtgCountry->AddColumn($this->colEditLinkColumn);
     $this->dtgCountry->AddColumn($this->colCountryId);
     $this->dtgCountry->AddColumn($this->colShortDescription);
     $this->dtgCountry->AddColumn($this->colAbbreviation);
     $this->dtgCountry->AddColumn($this->colStateFlag);
     $this->dtgCountry->AddColumn($this->colProvinceFlag);
 }
 /**
  * Create and setup QListBox lstCountry
  * @param string $strControlId optional ControlId to use
  * @return QListBox
  */
 public function lstCountry_Create($strControlId = null)
 {
     $this->lstCountry = new QListBox($this->objParentObject, $strControlId);
     $this->lstCountry->Name = QApplication::Translate('Country');
     $this->lstCountry->AddItem(QApplication::Translate('- Select One -'), null);
     $objCountryArray = Country::QueryArray(QQ::All(), QQ::OrderBy(QQN::Country()->Name));
     if ($objCountryArray) {
         foreach ($objCountryArray as $objCountry) {
             $objListItem = new QListItem($objCountry->__toString(), $objCountry->Id);
             if ($this->objPerson->Country && $this->objPerson->Country->Id == $objCountry->Id) {
                 $objListItem->Selected = true;
             }
             $this->lstCountry->AddItem($objListItem);
         }
     }
     return $this->lstCountry;
 }
Ejemplo n.º 3
0
 public function __construct($objParentObject, $strSetEditPanelMethod, $strCloseEditPanelMethod, $strControlId = null)
 {
     // Call the Parent
     try {
         parent::__construct($objParentObject, $strControlId);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
     // Record Method Callbacks
     $this->strSetEditPanelMethod = $strSetEditPanelMethod;
     $this->strCloseEditPanelMethod = $strCloseEditPanelMethod;
     // Setup DataGrid Columns
     $this->colEditLinkColumn = new QDataGridColumn(QApplication::Translate('Edit'), '<?= $_CONTROL->ParentControl->dtgCountry_EditLinkColumn_Render($_ITEM) ?>');
     $this->colEditLinkColumn->HtmlEntities = false;
     $this->colCountryId = new QDataGridColumn(QApplication::Translate('Country Id'), '<?= $_ITEM->CountryId; ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->CountryId), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->CountryId, false)));
     $this->colShortDescription = new QDataGridColumn(QApplication::Translate('Short Description'), '<?= QString::Truncate($_ITEM->ShortDescription, 200); ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->ShortDescription), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->ShortDescription, false)));
     $this->colAbbreviation = new QDataGridColumn(QApplication::Translate('Abbreviation'), '<?= QString::Truncate($_ITEM->Abbreviation, 200); ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->Abbreviation), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->Abbreviation, false)));
     $this->colStateFlag = new QDataGridColumn(QApplication::Translate('State Flag'), '<?= ($_ITEM->StateFlag) ? "true" : "false" ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->StateFlag), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->StateFlag, false)));
     $this->colProvinceFlag = new QDataGridColumn(QApplication::Translate('Province Flag'), '<?= ($_ITEM->ProvinceFlag) ? "true" : "false" ?>', array('OrderByClause' => QQ::OrderBy(QQN::Country()->ProvinceFlag), 'ReverseOrderByClause' => QQ::OrderBy(QQN::Country()->ProvinceFlag, false)));
     // Setup DataGrid
     $this->dtgCountry = new QDataGrid($this);
     $this->dtgCountry->CellSpacing = 0;
     $this->dtgCountry->CellPadding = 4;
     $this->dtgCountry->BorderStyle = QBorderStyle::Solid;
     $this->dtgCountry->BorderWidth = 1;
     $this->dtgCountry->GridLines = QGridLines::Both;
     // Datagrid Paginator
     $this->dtgCountry->Paginator = new QPaginator($this->dtgCountry);
     $this->dtgCountry->ItemsPerPage = 10;
     // Specify Whether or Not to Refresh using Ajax
     $this->dtgCountry->UseAjax = true;
     // Specify the local databind method this datagrid will use
     $this->dtgCountry->SetDataBinder('dtgCountry_Bind', $this);
     $this->dtgCountry->AddColumn($this->colEditLinkColumn);
     $this->dtgCountry->AddColumn($this->colCountryId);
     $this->dtgCountry->AddColumn($this->colShortDescription);
     $this->dtgCountry->AddColumn($this->colAbbreviation);
     $this->dtgCountry->AddColumn($this->colStateFlag);
     $this->dtgCountry->AddColumn($this->colProvinceFlag);
     // Setup the Create New button
     $this->btnCreateNew = new QButton($this);
     $this->btnCreateNew->Text = QApplication::Translate('Create a New') . ' ' . QApplication::Translate('Country');
     $this->btnCreateNew->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnCreateNew_Click'));
 }
 /**
  * Used internally by the Meta-based Add Column tools.
  *
  * Given a QQNode or a Text String, this will return a Country-based QQNode.
  * It will also verify that it is a proper Country-based QQNode, and will throw an exception otherwise.
  *
  * @param mixed $mixContent
  * @return QQNode
  */
 protected function ResolveContentItem($mixContent)
 {
     if ($mixContent instanceof QQNode) {
         if (!$mixContent->_ParentNode) {
             throw new QCallerException('Content QQNode cannot be a Top Level Node');
         }
         if ($mixContent->_RootTableName == 'country') {
             if ($mixContent instanceof QQReverseReferenceNode && !$mixContent->_PropertyName) {
                 throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
             }
             $objCurrentNode = $mixContent;
             while ($objCurrentNode = $objCurrentNode->_ParentNode) {
                 if (!$objCurrentNode instanceof QQNode) {
                     throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
                 }
                 if ($objCurrentNode instanceof QQReverseReferenceNode && !$objCurrentNode->_PropertyName) {
                     throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
                 }
             }
             return $mixContent;
         } else {
             throw new QCallerException('Content QQNode has a root table of "' . $mixContent->_RootTableName . '". Must be a root of "country".');
         }
     } else {
         if (is_string($mixContent)) {
             switch ($mixContent) {
                 case 'Id':
                     return QQN::Country()->Id;
                 case 'Name':
                     return QQN::Country()->Name;
                 case 'Code':
                     return QQN::Country()->Code;
                 default:
                     throw new QCallerException('Simple Property not found in CountryDataGrid content: ' . $mixContent);
             }
         } else {
             if ($mixContent instanceof QQAssociationNode) {
                 throw new QCallerException('Content QQNode cannot go through any "To Many" association nodes.');
             } else {
                 throw new QCallerException('Invalid Content type');
             }
         }
     }
 }
Ejemplo n.º 5
0
 /**
  * Load a single Country object,
  * by Abbreviation Index(es)
  * @param string $strAbbreviation
  * @return Country
  */
 public static function LoadByAbbreviation($strAbbreviation, $objOptionalClauses = null)
 {
     return Country::QuerySingle(QQ::Equal(QQN::Country()->Abbreviation, $strAbbreviation), $objOptionalClauses);
 }
Ejemplo n.º 6
0
 /**
  * Load a single Country object,
  * by Code Index(es)
  * @param string $strCode
  * @return Country
  */
 public static function LoadByCode($strCode)
 {
     return Country::QuerySingle(QQ::Equal(QQN::Country()->Code, $strCode));
 }
Ejemplo n.º 7
0
 /**
  * Load a single Country object,
  * by CountryId Index(es)
  * @param integer $intCountryId
  * @return Country
  */
 public static function LoadByCountryId($intCountryId, $objOptionalClauses = null)
 {
     return Country::QuerySingle(QQ::Equal(QQN::Country()->CountryId, $intCountryId), $objOptionalClauses);
 }
Ejemplo n.º 8
0
 /**
  * Load a single Country object,
  * by CountryId Index(es)
  * @param integer $intCountryId
  * @return Country
  */
 public static function LoadByCountryId($intCountryId)
 {
     return Country::QuerySingle(QQ::Equal(QQN::Country()->CountryId, $intCountryId));
 }