/**
  * Refresh this MetaControl with Data from the local NotificationUserAccount object.
  * @param boolean $blnReload reload NotificationUserAccount from the database
  * @return void
  */
 public function Refresh($blnReload = false)
 {
     if ($blnReload) {
         $this->objNotificationUserAccount->Reload();
     }
     if ($this->lblNotificationUserAccountId) {
         if ($this->blnEditMode) {
             $this->lblNotificationUserAccountId->Text = $this->objNotificationUserAccount->NotificationUserAccountId;
         }
     }
     if ($this->lstUserAccount) {
         $this->lstUserAccount->RemoveAllItems();
         if (!$this->blnEditMode) {
             $this->lstUserAccount->AddItem(QApplication::Translate('- Select One -'), null);
         }
         $objUserAccountArray = UserAccount::LoadAll();
         if ($objUserAccountArray) {
             foreach ($objUserAccountArray as $objUserAccount) {
                 $objListItem = new QListItem($objUserAccount->__toString(), $objUserAccount->UserAccountId);
                 if ($this->objNotificationUserAccount->UserAccount && $this->objNotificationUserAccount->UserAccount->UserAccountId == $objUserAccount->UserAccountId) {
                     $objListItem->Selected = true;
                 }
                 $this->lstUserAccount->AddItem($objListItem);
             }
         }
     }
     if ($this->lblUserAccountId) {
         $this->lblUserAccountId->Text = $this->objNotificationUserAccount->UserAccount ? $this->objNotificationUserAccount->UserAccount->__toString() : null;
     }
     if ($this->lstNotification) {
         $this->lstNotification->RemoveAllItems();
         if (!$this->blnEditMode) {
             $this->lstNotification->AddItem(QApplication::Translate('- Select One -'), null);
         }
         $objNotificationArray = Notification::LoadAll();
         if ($objNotificationArray) {
             foreach ($objNotificationArray as $objNotification) {
                 $objListItem = new QListItem($objNotification->__toString(), $objNotification->NotificationId);
                 if ($this->objNotificationUserAccount->Notification && $this->objNotificationUserAccount->Notification->NotificationId == $objNotification->NotificationId) {
                     $objListItem->Selected = true;
                 }
                 $this->lstNotification->AddItem($objListItem);
             }
         }
     }
     if ($this->lblNotificationId) {
         $this->lblNotificationId->Text = $this->objNotificationUserAccount->Notification ? $this->objNotificationUserAccount->Notification->__toString() : null;
     }
     if ($this->txtLevel) {
         $this->txtLevel->Text = $this->objNotificationUserAccount->Level;
     }
     if ($this->lblLevel) {
         $this->lblLevel->Text = $this->objNotificationUserAccount->Level;
     }
 }
 public function dtgNotification_Bind()
 {
     // Get Total Count b/c of Pagination
     $this->dtgNotification->TotalItemCount = Notification::CountAll();
     $objClauses = array();
     if ($objClause = $this->dtgNotification->OrderByClause) {
         array_push($objClauses, $objClause);
     }
     if ($objClause = $this->dtgNotification->LimitClause) {
         array_push($objClauses, $objClause);
     }
     $this->dtgNotification->DataSource = Notification::LoadAll($objClauses);
 }
 protected function lstNotification_Create()
 {
     $this->lstNotification = new QListBox($this);
     $this->lstNotification->Name = QApplication::Translate('Notification');
     $this->lstNotification->Required = true;
     if (!$this->blnEditMode) {
         $this->lstNotification->AddItem(QApplication::Translate('- Select One -'), null);
     }
     $objNotificationArray = Notification::LoadAll();
     if ($objNotificationArray) {
         foreach ($objNotificationArray as $objNotification) {
             $objListItem = new QListItem($objNotification->__toString(), $objNotification->NotificationId);
             if ($this->objNotificationUserAccount->Notification && $this->objNotificationUserAccount->Notification->NotificationId == $objNotification->NotificationId) {
                 $objListItem->Selected = true;
             }
             $this->lstNotification->AddItem($objListItem);
         }
     }
 }
 protected function dtgNotification_Bind()
 {
     // Because we want to enable pagination AND sorting, we need to setup the $objClauses array to send to LoadAll()
     // Remember!  We need to first set the TotalItemCount, which will affect the calcuation of LimitClause below
     $this->dtgNotification->TotalItemCount = Notification::CountAll();
     // Setup the $objClauses Array
     $objClauses = array();
     // If a column is selected to be sorted, and if that column has a OrderByClause set on it, then let's add
     // the OrderByClause to the $objClauses array
     if ($objClause = $this->dtgNotification->OrderByClause) {
         array_push($objClauses, $objClause);
     }
     // Add the LimitClause information, as well
     if ($objClause = $this->dtgNotification->LimitClause) {
         array_push($objClauses, $objClause);
     }
     // Set the DataSource to be the array of all Notification objects, given the clauses above
     $this->dtgNotification->DataSource = Notification::LoadAll($objClauses);
 }