gpt4 book ai didi

jquery - 在 Symfony2 中使用 GenemuFormBundle

转载 作者:行者123 更新时间:2023-12-01 02:32:11 25 4
gpt4 key购买 nike

我正在尝试在我的 Symfony2 应用程序中使用 que GenemuFormBundle。我按照以下链接中的步骤操作:

http://symfohub.com/repo/GenemuFormBundle/documentation

之后,看来安装正确了。在该网站的底部写着:

You use GenemuFormBundle and you seen that it does not work! Maybe you have forgotten form_javascript or form_stylesheet.

The principle is to separate the javascript, stylesheet and html. This allows better integration of web pages.

View a template example form view:

https://github.com/genemu/GenemuFormBundle/blob/master/Resources/doc/template.md

我将该代码复制到呈现表单的模板中。然后我下载了jquery,jquery-ui和jquery-tokeninput,js和css文件,因为看起来它们是实现Select2功能所需的文件,我将它们放入各自的文件夹中,并正确加载它们(在至少 Symfony2 没有提示找不到它们)。

我还在我的实体中添加了以下代码,使用genemu_jqueryselect2_choice 而不是默认的:

->add('listofitems', 'genemu_jqueryselect2_choice',
array('choices' => array('item1' => 'item1',
'item2' => 'item2',
'item3' => 'item3'),
'required' => false ))

表单加载并正常工作,但我没有得到像这样的选择框。

但我得到的是老式的选择框。如果我使用genemu_jqueryautocompleter_entity选项,自动完成功能也不起作用。我做错了什么?

最佳答案

同样重要的是添加 following到你的 Twig 模板:

{% block stylesheets %}
{{ form_stylesheet(form) }}
{% endblock %}

{% block javascripts %}
{{ form_javascript(form) }}
{% endblock %}

关于jquery - 在 Symfony2 中使用 GenemuFormBundle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13719679/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com