问题标签 [active-form]
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.
jquery - 如何从 javascript 获取值到 yii2 activeform 下拉列表
在这里,我使用了一个下拉字段。
脚本代码是
我有名为 Setting,values 的文本字段。如果用户在设置文本框中输入 1、2、3 等值,则该值将显示在下拉字段中。该值无法附加到活动表单。
谁能帮助我如何做到这一点?
ruby-on-rails-3 - Migrating a Rails 2 app to Rails 3: `image_path` throws "undefined local variable or method 'config'"
background
I am trying to migrate an old Rails 2 (Ruby 1.8.7) app to Rails 3.0.9 (Ruby 1.9.3) — yes it's a stepping stone to get it to Rails 4 and Ruby 2.2 — and I've hit the following problem.
The original app makes extensive use of an old Active Form
gem which we've hacked slightly to support Ruby 1.9.
It mostly works, but there appears to be some issue with how it interacts with the ActionView::Helpers::AssetTagHelper
that's part of ActionPack 3.0.9
.
In my specific case I have an ActiveForm::DateCalendarSection
(built dynamically) which subclasses ActiveForm::Element::Section
, which, according to self.class.ancestors
, is a subclass of ActionView::Helpers::AssetTagHelper
. Looking at the ActiveForm
source however there is no mention of AssetTagHelper
or asset_tag_helper
so how they are actually connected remains a mystery to me.
Problem
Calls to the method image_path
result in an error
The call to image_path
is simply a wrapper around a call to compute_public_path
in ActionView::Helpers::AssetTagHelper
Diving into that with binding.pry
it's evident that config
is indeed not defined. Likewise controller
is also not defined.
Question
What would have changed between Rails 2 and Rails 3, such that methods from ActionView::Helpers::AssetTagHelper
can no longer access Rails' config
or the current controller
?
php - 使用 ActiveForm 在 Yii2 中添加相同的字段
我是 Yii2 的新手。当我创建一个 _form.php 并且我想添加更多现有字段的字段时。我在 _form.php 文件中的代码:
我希望单击按钮时<i class="fa fa-plus-circle fa-2x plusform"></i>
,会出现更多用户字段。我可以为此使用 AJAX 吗?
php - Yii2 ActiveForm 输入组
我想在input-group-btn
上显示ActiveForm
,但ActiveForm
总是在 div 内显示输入。我怎样才能摆脱它?
php - Yii2 插入同一张表的多条记录
我的模型有 2 个字段 Product.php:
我的控制器 ProductController.php:
我想用 ActiveForm 多次插入同一张表:
但是当我保存信息时,字段被覆盖,只插入最后一条记录
jquery - Yii2 客户端表单验证
我有一个 Yii2 ActiveFrom。
将提交按钮替换为
因为我需要在页面在后台处理期间显示模态叠加。(请稍等...)。
总是返回未定义。
即使我打电话
在“验证”之后,“验证”元素始终为假,即使表单没有验证错误。
始终返回 false,即使表单已提交。
我怎样才能触发我的请等待对话框
仅在没有验证错误的情况下显示?
php - 从 TbForm 迁移到 TbActiveForm yiibooster
你好,
我最近接到了一项任务来更新我们的 yiibooster 扩展。
我遇到的问题是这个 tbform 代码在这个版本的 yiibooster 中不再工作(整个 tbform 功能似乎已被删除)
我对此重建功能的猜测是,但我没有运气让它真正起作用。(未定义 tbactiveform.0)
yii2 - 如何在新窗口中打开提交按钮?
单击提交按钮时是否可以在新窗口中打开?我的活动表单中有两个提交按钮。
我知道如果我给出'target'=>'_blank'
,我会在正常情况下得到想要的结果,但它不能以主动形式工作。
我试过如上。然后我决定给target => _blank
活动形式,如下所示
它可以工作,但不是以所需的方式。现在,如果我单击任何一个按钮,我将被重定向到新页面。我只想在单击“Pdf”按钮时重定向到新页面。有任何想法吗?
我不想使用任何 javascript。