sfWidgetFormDoctrineChoice表单:无法取消选中

时间:2014-02-21 13:08:59

标签: doctrine-orm symfony1 symfony-1.4

我在Symfony 1.4中有一个应用程序的错误,在一个简单形式的页面中:

$this->widgetSchema['list'] = new sfWidgetFormDoctrineChoice(array('multiple' => true, 'model' => 'Object', 'expanded' => true));

此代码显示复选框列表。 数据库已从db成功加载。 在表单上,​​我可以检查每个选项并验证我的表单。 但无法取消选中已经“已检查”的选项

<ul class="list">
  <li>
    <input name="sf_guard_user_profile[list][]" type="checkbox" value="1" id="sf_guard_user_profile_list_1" />
    <label for="sf_guard_user_profile_list_1">Option 1</label>
  </li>
  <li>
    <span class="checked">
      <input name="sf_guard_user_profile[list][]" type="checkbox" value="2" id="sf_guard_user_profile_list_2" checked="checked" />
      <label for="sf_guard_user_profile_list_2">Option 2</label>
    </span>
  </li>
</ul>

有人有想法吗?

1 个答案:

答案 0 :(得分:0)

我解决了我的问题。 这是与一些jQueryUI插件的冲突。我只是禁用它。

无论如何,请求帮助。