Changeset 105 for trunk/app/views/messages
- Timestamp:
- 09/17/07 13:30:42 (14 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/messages/contact.thtml (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/messages/contact.thtml
r103 r105 11 11 <?php 12 12 echo $form->labelTag( 'Message/title', 'Title:' ) . '<br />'; 13 echo $html->selectTag('Message/title', array("Mr." => "Mr.", "M iss" => "Miss"));13 echo $html->selectTag('Message/title', array("Mr." => "Mr.", "Mrs."=>"Mrs.", "Miss" => "Miss", "Dr."=>"Dr.", "Fellow"=>"Fellow"), null, null, false, false); 14 14 ?> 15 15 <br /> … … 21 21 <br /> 22 22 <p> 23 <?php echo $form->labelTag( 'Message/body', 'Body:' );?><br />23 <?php echo $form->labelTag('Message/body', 'Body:' );?><br /> 24 24 <?php echo $html->textarea('Message/body', array("cols"=>15, "rows"=>5)); ?> 25 25 <?php echo $fck->load('Message/body', 'Basic', 480, 220); ?> … … 30 30 <?php echo $ajax->submit('Send', array("url" => "/messages/insert/", 31 31 "update" =>"updater", 32 "before" => "return chkForm();MyFCKObject.UpdateEditorFormValue()",32 //"before" => "return chkForm()", 33 33 "loading" => "Element.show('charging');Element.hide('updater')", 34 34 "complete" => "Element.hide('charging');Effect.Appear('updater')" … … 64 64 return false; 65 65 } 66 66 67 return true; 67 68 }
