问题标签 [formbuilder]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - 嵌套 CActiveForm - Yii 框架
我的主要 index.php 中有以下代码:
以及部分视图中的以下代码_showSuestions
现在的问题是这不起作用。当我打开我的页面时,在我调用我的 partialView 后表单标签突然关闭。我猜这是因为嵌套的 CActiveForm?当我删除内部 CActiveForm 它工作
php - 使用实体自动构建表单(一对一关系)
我想知道是否可以使用实体构建一个表单,以一对一的关系获取所有字段。澄清:
我有一个User.php
实体(包含所有明显的字段、姓名、姓氏、流派等)和一个Address.php
实体。我想要的是在不逐一添加地址实体的属性的情况下构建整个表单,并将其以适当的关系保存在数据库中。
这是我尝试过的(我已经稍微修剪了代码),但显然不是正确的方法:
用户实体:
地址类
表单生成器:
这只获取表的字段 streetName 并将其放入列表中。
symfony - 如何在 symfony2 中显示自定义表单验证错误消息
任何人都可以建议如何在我的表单窗口中自定义错误消息,例如“此值无效”、“密码不匹配”以显示为空字段的弹出错误消息吗?
checkbox - 如何使用 symfony2 表单生成器呈现默认选中的复选框?
我还没有找到任何简单的方法来完成默认情况下简单地选中复选框。那不可能那么难,所以我错过了什么?
symfony - 如何在 symfony2 中使用表单获取输入类型是数字?
这是我的表单构建器代码
这是html标记
任何人建议我。为什么输入类型给出“文本”,因为我已经给出了一个数字。在构建形式时。我将如何使用表单生成器在 symfony2 中将输入类型作为“数字”。
multilingual - 表单生成器和多语言支持
我正在构建一个多语言 Web 应用程序,管理员可以在其中创建用户用来插入一些信息的表单(通过表单构建器)。
由于网络应用程序必须支持多语言,我认为管理员必须为字段名称和选择输入字段添加翻译。
我想为管理员简化翻译工作。我该怎么办?
ruby-on-rails - 使用带有 rails 嵌套属性的 ckeditor gem
有没有人能够以嵌套形式使用附加到表单构建器对象的ckeditor gem(https://github.com/galetahub/ckeditor/issues/98)?
宝石文件:
我将问题提取到一个非常简单的嵌套表单应用程序中,即
post.rb:
所以我尝试使用ckeditor来编辑评论。视图如下所示:
评论内容会出现一个普通的文本区域。如果我将表单帖子部分中的“f.text_area”切换为“f.cktext_area”,则帖子内容会出现 ckeditor。
呈现表单时,日志中不会出现任何错误。
我错过了什么吗?
symfony - Dynamic CollectionType with non-entity fields
I have a code-validator form, built out of the model. The user select a product from a predefined list (loaded from an entity), and enters his unique code to validate it. This is:
The problem is that I need to add the choice if user wants to validate more than one code at once, so I ended up adding this (following this guide):
And then calling it in the controller $form = $this->createForm(new CollectionCodeType());
, but is not working. No errors, simply it doesn't show the form.
I don't know how this should be done, because I am not sure if building out of the model is correct, but in this case I think there is no other way to achieve what I need.
Many thanks.
EDIT: Rendering the form: http://pastebin.com/aSrUx67N
symfony - 如何在 symfony2 中设置集合类型的字段值
//--form timesheettype---不是实体类
//--- DailyType -- 该类型有实体
// - 控制器 -
我有实体类 TimeSheetDaily。在构建 TimeSheetType 表单时,我将 TimeSheetDaily 类对象数组传递给表单类型。并且 TimeSheetType 具有 DailyType 的集合。它不是为集合字段设置值,它只是一个 TimeSheetDaily 实体。
symfony - 如何在 symfony2 的表单类型类中获取学说存储库?
我如何在 FormType 类中使用上述代码。我正在使用此查询为表单生成器中的选择类型生成数组。