예제 #1
0
 public function RenderValue(QueryCondition $objCondition)
 {
     $intIndex = $this->dtgConditions->CurrentRowIndex;
     $strControlId = 'pnlValue' . $intIndex;
     if (!($pnlValue = $this->objForm->GetControl($strControlId))) {
         $pnlValue = new QPanel($this->dtgConditions, $strControlId);
         $pnlValue->AutoRenderChildren = true;
     }
     $this->pnlValue_Refresh($intIndex);
     return $pnlValue->Render(false);
 }