Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
html5プレースホルダー属性を使用して、テキスト入力に「コメントを追加」などのデフォルトメッセージを設定したいと思います。誰かがSymfony1.4でそれを行う方法を知っていますか?
2番目のパラメーターでウィジェットに任意のhtml属性を追加できます。
$this->form->setWidgets(array( 'name' => new sfWidgetFormInput( array('label' => 'Your Name'), array('placeholder' => 'Add your comment') ), ));