我正在尝试将jscolor添加到输入字段,但它不适用于我!
在配置功能中:
public function configure() {
unset($this['created_at'],$this['clicks']);
$this->widgetSchema['background_color']->sfWidgetFormInput('class'=> 'jscolor');
}
我还尝试在BaseForm中添加以下内容:
$this->setWidgets(array(
'id' => new sfWidgetFormInputHidden(),
'background_color' => new sfWidgetFormInput(array('class'=> 'jscolor')),
'url_link' => new sfWidgetFormInput(),
'status' => new sfWidgetFormInput(),
));
错误:sfWidgetFormInput 函数中不允许使用类!
我想添加一个类jscolor!如何通过 JavaScript 或使用此配置添加它?