0

エラーが発生したときにフィールドの背景色を変更したい。

Java Struts では、次のようなことができます。

<s:textfield name="parameter" cssClass="normal_css_class" cssErrorClass="class_on_error" cssErrorStyle="style_on error"/>

上記のようなことができるようになりたいです。このタグは、フィールド パラメータにエラーがある場合、フィールド cssErrorClass をレンダリングします。追加の Javascript は必要ありません。

現在、テンプレートに次の(非常に汚い)コードがあります。

<?php if($form['bill_to']->hasError()): ?>
  <?php echo $form['bill_to']->render(array('style' => 'background-color: red')) ?>
<?php else: ?>
  <?php echo $form['bill_to']->render() ?>
<?php endif; ?>
<?php echo $form['bill_to']->renderError() ?>

上記のコードは機能しますが、呼び出すだけで済むように実装する方法はありますか?

<?php echo $form['bill_to']->render() ?>

その後、スタイルの設定を実行しますか? render() メソッドをオーバーライドすることを考えていますが、それが正しいアプローチかどうかはわかりません。

4

2 に答える 2

2

次のように sfWidgetFormSchemaFormatter クラスを拡張できます。

class sfWidgetFormSchemaFormatterCustom extends sfWidgetFormSchemaFormatter
{
    protected
        $rowFormat                  = "<div class=\"%row_class%\">%label% %field% %hidden_fields% %help%</div>",
        $helpFormat                 = "%help%",
        $errorRowFormat             = "",
        $errorListFormatInARow      = "\n%errors%\n",
        $errorRowFormatInARow       = "<span class=\"error\">%error%</span>\n",
        $namedErrorRowFormatInARow  = "%error%\n",
        $decoratorFormat            = "%content%";


    public function formatRow($label, $field, $errors = array(), $help = '', $hiddenFields = null)
    {
        $row = parent::formatRow(
            $label,
            $field,
            $errors,
            $help,
            $hiddenFields
        );

        return strtr($row, array(
            '%row_class%' => (count($errors) > 0) ? ' error' : '',
        ));
    }
}// decorator class

次のように configure() メソッド内のフォームに適用します。

class myForm extends sfForm
{
    public function configure()
    {
        // ....


        $formatter = new sfWidgetFormSchemaFormatterCustom($this->widgetSchema);
        $this->widgetSchema->addFormFormatter('custom', $formatter);
        $this->widgetSchema->setFormFormatterName('custom');
    }
}
于 2013-04-19T23:17:39.507 に答える
0

フォーム フォーマッタを調べることができます。 http://www.symfony-project.org/api/1_4/sfWidgetFormSchemaFormatterを参照してください。

formformatter オブジェクトは$this->getWidgetSchema()->getFormFormatter()、sfForm の configure メソッドにいるときに取得できます。

于 2013-04-18T06:50:45.367 に答える