Пример #1
0
 protected function Form_Create()
 {
     parent::Form_Create();
     // Use the CreateFromPathInfo shortcut (this can also be done manually using the NarroLogMetaControl constructor)
     // MAKE SURE we specify "$this" as the MetaControl's (and thus all subsequent controls') parent
     $this->mctNarroLog = NarroLogMetaControl::CreateFromPathInfo($this);
     // Call MetaControl's methods to create qcontrols based on NarroLog's data fields
     $this->lblLogId = $this->mctNarroLog->lblLogId_Create();
     $this->lstLanguage = $this->mctNarroLog->lstLanguage_Create();
     $this->lstProject = $this->mctNarroLog->lstProject_Create();
     $this->lstUser = $this->mctNarroLog->lstUser_Create();
     $this->txtMessage = $this->mctNarroLog->txtMessage_Create();
     $this->txtPriority = $this->mctNarroLog->txtPriority_Create();
     $this->calDate = $this->mctNarroLog->calDate_Create();
     // Create Buttons and Actions on this Form
     $this->btnSave = new QButton($this);
     $this->btnSave->Text = QApplication::Translate('Save');
     $this->btnSave->AddAction(new QClickEvent(), new QAjaxAction('btnSave_Click'));
     $this->btnSave->CausesValidation = true;
     $this->btnCancel = new QButton($this);
     $this->btnCancel->Text = QApplication::Translate('Cancel');
     $this->btnCancel->AddAction(new QClickEvent(), new QAjaxAction('btnCancel_Click'));
     $this->btnDelete = new QButton($this);
     $this->btnDelete->Text = QApplication::Translate('Delete');
     $this->btnDelete->AddAction(new QClickEvent(), new QConfirmAction(sprintf(QApplication::Translate('Are you SURE you want to DELETE this %s?'), QApplication::Translate('NarroLog'))));
     $this->btnDelete->AddAction(new QClickEvent(), new QAjaxAction('btnDelete_Click'));
     $this->btnDelete->Visible = $this->mctNarroLog->EditMode;
 }
Пример #2
0
 /**
  * Static Helper Method to Create using QueryString arguments
  *
  * @param mixed $objParentObject QForm or QPanel which will be using this NarroLogMetaControl
  * @param QMetaControlCreateType $intCreateType rules governing NarroLog object creation - defaults to CreateOrEdit
  * @return NarroLogMetaControl
  */
 public static function CreateFromQueryString($objParentObject, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     $intLogId = QApplication::QueryString('intLogId');
     return NarroLogMetaControl::Create($objParentObject, $intLogId, $intCreateType);
 }