Example #1
0
 function Show()
 {
     parent::BeginShow();
     $this->ShowInputBox("initial_money", "Initial Money", $this->initialMoney);
     $this->ShowDateAndTimeInput("last_check_time", "Last Check Time", $this->lastCheckTime);
     parent::EndShow();
 }
 function Show()
 {
     parent::BeginShow();
     $this->ShowInputBox("name", "Name");
     $this->ShowTypeSelector();
     $this->ShowDescriptionInput("description", "Description");
     parent::EndShow();
 }
 function Show()
 {
     parent::BeginShow();
     echo "<input type='hidden' name='id' value='" . $this->category->id . "'/>";
     $this->ShowInputBox("name", "Name", $this->category->name);
     $this->ShowTypeSelector();
     $this->ShowDescriptionInput("description", "Description", $this->category->description);
     parent::EndShow();
 }
 function Show()
 {
     parent::BeginShow();
     $this->ShowCategoryListBox();
     $this->ShowInputBox("detail", "Detail");
     $this->showDateInput("date", "Date");
     $this->showTimeInput("time", "Time");
     $this->ShowAmountBox("amount", "Amount");
     parent::EndShow();
 }
 function Show()
 {
     parent::BeginShow();
     echo "<input type='hidden' name='id' value='" . $this->record->GetId() . "'/>";
     $this->ShowCategoryListBox();
     $this->ShowInputBox("detail", "Detail", $this->record->GetDetail());
     $this->showDateInput("date", "Date", $this->record->GetTime());
     $this->showTimeInput("time", "Time", $this->record->GetTime());
     $this->ShowAmountBox("amount", "Amount", $this->record->GetAmount());
     parent::EndShow();
 }