IncrementOffset(); throw $objExc; } // Record Method Callbacks $this->strSetEditPanelMethod = $strSetEditPanelMethod; $this->strCloseEditPanelMethod = $strCloseEditPanelMethod; // Setup the Template $this->Template = 'ShoppingCartListPanel.tpl.php'; // Instantiate the Meta DataGrid $this->dtgShoppingCarts = new ShoppingCartDataGrid($this); // Style the DataGrid (if desired) $this->dtgShoppingCarts->CssClass = 'datagrid'; $this->dtgShoppingCarts->AlternateRowStyle->CssClass = 'alternate'; // Add Pagination (if desired) $this->dtgShoppingCarts->Paginator = new QPaginator($this->dtgShoppingCarts); $this->dtgShoppingCarts->ItemsPerPage = 8; // Use the MetaDataGrid functionality to add Columns for this datagrid // Create an Edit Column $this->pxyEdit = new QControlProxy($this); $this->pxyEdit->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'pxyEdit_Click')); $this->dtgShoppingCarts->MetaAddEditProxyColumn($this->pxyEdit, 'Edit', 'Edit'); // Create the Other Columns (note that you can use strings for shopping_cart's properties, or you // can traverse down QQN::shopping_cart() to display fields that are down the hierarchy) $this->dtgShoppingCarts->MetaAddColumn('Id'); $this->dtgShoppingCarts->MetaAddColumn('CreationDate'); $this->dtgShoppingCarts->MetaAddColumn('LastModification'); $this->dtgShoppingCarts->MetaAddColumn(QQN::ShoppingCart()->Account); // Setup the Create New button $this->btnCreateNew = new QButton($this); $this->btnCreateNew->Text = QApplication::Translate('Create a New') . ' ' . QApplication::Translate('ShoppingCart'); $this->btnCreateNew->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnCreateNew_Click')); } public function pxyEdit_Click($strFormId, $strControlId, $strParameter) { $strParameterArray = explode(',', $strParameter); $objEditPanel = new ShoppingCartEditPanel($this, $this->strCloseEditPanelMethod, $strParameterArray[0]); $strMethodName = $this->strSetEditPanelMethod; $this->objForm->$strMethodName($objEditPanel); } public function btnCreateNew_Click($strFormId, $strControlId, $strParameter) { $objEditPanel = new ShoppingCartEditPanel($this, $this->strCloseEditPanelMethod, null); $strMethodName = $this->strSetEditPanelMethod; $this->objForm->$strMethodName($objEditPanel); } } ?>