Example #1
0
 function ReadOnlyField($field, $pageObject, $id)
 {
     parent::EditControl($field, $pageObject, $id);
     $this->format = EDIT_FORMAT_READONLY;
 }
Example #2
0
 function HiddenField($field, $pageObject, $id, $connection)
 {
     parent::EditControl($field, $pageObject, $id, $connection);
     $this->format = EDIT_FORMAT_HIDDEN;
 }
Example #3
0
 function TextField($field, $pageObject, $id)
 {
     parent::EditControl($field, $pageObject, $id);
     $this->format = EDIT_FORMAT_TEXT_FIELD;
 }
 function TextAreaField($field, $pageObject, $id, $connection)
 {
     parent::EditControl($field, $pageObject, $id, $connection);
     $this->format = EDIT_FORMAT_TEXT_AREA;
 }
 function PasswordField($field, $pageObject, $id, $connection)
 {
     parent::EditControl($field, $pageObject, $id, $connection);
     $this->format = EDIT_FORMAT_PASSWORD;
 }