| 12345678910111213141516 |
LabelEx ($ model, 'name');?> // Display the label TextField ($ model, 'name', array ('size' => 60, 'maxlength' => 128);?> // Display the text box TextArea ($ model, 'body', array ('rows '=> 6, 'cols' => 50);?> // Display text area PasswordField ($ model, 'password');?> // Display the password box HiddenField ($ model, 'Action', array ('value' => 'Add');?> // Display hidden fields TextField ($ model, 'text', array ('size' => 60, 'maxlength' => 128);?> // Display the text box PasswordField ($ model, 'password');?> // Display the password box FileField ($ model, 'file');?> // Display the upload domain HiddenField ($ model, 'den den ', array ('value' => 'Add');?> // Display hidden fields DropDownList ($ model, 'select', array ('a' => 'A', 'B' => 'B ', 'C' => 'C');?> // Display the drop-down list ListBox ($ model, 'select', array ('a' => 'A', 'B' => 'B', 'c' => 'C '), array ('multiple '=> 'multiple');?> // Show multiple drop-down lists RadioButton ($ model, 'Radio ', array ('value' => 'A');?> A // display A radio RadioButtonList ($ model, 'Radio ', array ('a' => 'A',' B '=>' B ', 'C' => 'C');?> // Display multiple radio entries CheckBox ($ model, 'checkbox', array ('value' => 'A');?> B // display a checkbox CheckBoxList ($ model, 'checkbox', array ('a' => 'A', 'B' => 'B ', 'C' => 'C');?> // Display multiple checkboxes Error ($ model, 'name');?> // Display a single error |