예제 #1
0
 protected function Form_Create()
 {
     // Use the CreateFromPathInfo shortcut (this can also be done manually using the MyassetsMetaControl constructor)
     // MAKE SURE we specify "$this" as the MetaControl's (and thus all subsequent controls') parent
     $this->mctMyassets = MyassetsMetaControl::CreateFromPathInfo($this);
     // Call MetaControl's methods to create qcontrols based on Myassets's data fields
     $this->lblId = $this->mctMyassets->lblId_Create();
     $this->txtAsin = $this->mctMyassets->txtAsin_Create();
     $this->txtDetailPageURL = $this->mctMyassets->txtDetailPageURL_Create();
     $this->txtTitle = $this->mctMyassets->txtTitle_Create();
     $this->txtProductGroup = $this->mctMyassets->txtProductGroup_Create();
     $this->txtImageURL = $this->mctMyassets->txtImageURL_Create();
     $this->txtAuthor = $this->mctMyassets->txtAuthor_Create();
     $this->txtNumberOfPages = $this->mctMyassets->txtNumberOfPages_Create();
     $this->txtPublisher = $this->mctMyassets->txtPublisher_Create();
     $this->txtIsbn = $this->mctMyassets->txtIsbn_Create();
     $this->txtActor = $this->mctMyassets->txtActor_Create();
     $this->txtDirector = $this->mctMyassets->txtDirector_Create();
     $this->txtRunningTime = $this->mctMyassets->txtRunningTime_Create();
     $this->txtArtist = $this->mctMyassets->txtArtist_Create();
     $this->txtLabel = $this->mctMyassets->txtLabel_Create();
     $this->txtNumberOfDiscs = $this->mctMyassets->txtNumberOfDiscs_Create();
     $this->txtTracks = $this->mctMyassets->txtTracks_Create();
     $this->txtLanguage = $this->mctMyassets->txtLanguage_Create();
     $this->txtGenre = $this->mctMyassets->txtGenre_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(QApplication::Translate('Are you SURE you want to DELETE this') . ' ' . QApplication::Translate('Myassets') . '?'));
     $this->btnDelete->AddAction(new QClickEvent(), new QAjaxAction('btnDelete_Click'));
     $this->btnDelete->Visible = $this->mctMyassets->EditMode;
 }