- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我安装了 gem x-editable for rails:
# x-editable
gem 'x-editable-rails'
我将方法 xeditable?
添加到 ActionController
:
# Add a helper method to your controllers to indicate if x-editable should be enabled.
def xeditable?
true # Or something like current_user.xeditable?
end
但仍然报错:
ActionView::Template::Error (undefined method `xeditable?' for #<#<Class:0x007f9012e30f68>:0x007f9012ee9e78>):
14:
15: .panel-body
16: /a.doc_title.editable id='doc_title_12345' data-name="doc[title]" data-title="Enter doc title" data-type="text" data-url='/docs/12345' href='#doc_title_12345' = doc.title
17: = editable doc, :title
18:
app/views/docs/_single_doc_in_accordion.html.slim:17:in `_app_views_docs__single_doc_in_accordion_html_slim__2506304306156466629_70128411437560'
app/views/docs/index.html.slim:52:in `_app_views_docs_index_html_slim___3263534966956214695_70128384677640'
我应该在哪里定义方法 xeditable?
以便它开始工作?
这是application_controller.rb
:
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
end
这是application_helper.rb
:
module ApplicationHelper
# Add a helper method to your controllers to indicate if x-editable should be enabled.
def xeditable?
true # Or something like current_user.xeditable?
end
end
现在我收到新错误:与 xeditable?
相同,但使用 can?
(方法未定义)
最佳答案
在您的 ApplicationController.rb
中添加 helper_method :xeditable?
:
class ApplicationController < ActionController::Base
helper_method :xeditable?
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
# Add a helper method to your controllers to indicate if x-editable should be enabled.
def xeditable?
true # Or something like current_user.xeditable?
end
end
关于ruby-on-rails - 为什么 x-editable-rails gem 抛出错误 : undefined method `xeditable?' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20661986/
我正在使用xeditable Angular Directive(指令)。我需要根据外部下拉列表的值设置网格的 Status 列的所有下拉列表值。我已经设置了JsFiddle here .但是它不起作
我正在尝试使用 xeditable在具有以下结构的数据表上 ID Type
我有这个 html,但我不知道如何删除下划线: {{entry.startTime}} - {{entry.endTime}} 这是它的样子,我将删除下划线: [已解决]风格=“边框:
我正在使用 xeditable module.So 我的问题是如何获得下拉菜单的更改值?目前它不工作。请检查下面的插件。提前致谢。 {{ showStatus() }
我正在尝试对我的 angular/react 项目中的表进行内联编辑。我无法准确理解我应该如何对组件状态中定义的本地数组进行更改???我没有使用任何数据库或服务器......所有的例子都与数据库有关.
Xedit 是 X11 图形服务器的一部分,它不算好看,但却有足够的隐藏功能,使它成为一个严肃的文本编辑器。 X11 图形服务器由 X.org 发布,它有一些象征性的应用来展示
我正在将 JQuery xeditable 与 Angular2 一起使用,如下所示。但是,xeditable 弹出窗口仅打开一次。 有人可以帮我解决这个问题吗? 代码片段如下组件类: @Compon
我对 xeditable 指令有疑问。 onbeforesave 没有触发,即使就地编辑在客户端运行良好。我无法从 onbeforesave 或 onaftersave 得到任何反应。 我在我的项目中
http://plnkr.co/edit/bQyQNBcId9sp1l69UvTO?p=preview 单击编辑时,Id 的值未传递到 Id 的可编辑文本框。它还显示只读值以及可编辑的文本框。 请帮忙
我创建了一个带有弹出窗口的表,无法使用 xeditable 插件进行编辑,并尝试使用 ajax 调用将我的数据提交到数据库。以下是我的表行代码: echo "" . $row['loan_status
我正在使用 Angular Directive(指令):http://vitalets.github.io/angular-xeditable/ 我试图让表单显示为禁用表单,我的意思是,禁用所有元素(
我尝试在meanjs (meanjs.org) 中安装 Angular-xeditable ( http://vitalets.github.io/angular-xeditable/# ),但是用
{{ contact.phoneNumber || '' }} 我在 span 中使用了该指令,当我们单击按钮编辑联系号码时,它会在运行时生成输入框。我想为此输入框添加最大长度。有什么建议吗?
我正在尝试扩展(我的真实示例非常相似)angular-xeditable - 可编辑行 - 此处描述的示例: http://vitalets.github.io/angular-xeditable/#
这是我的代码 {{ showProductName(item.text) || 'Enter Name of a product' }} 是否可以在 e-onChange 中访
我使用带有下拉菜单的 Angular-xeditable 进行就地编辑( jsFiddle )。奇怪的是,当我在加载页面后立即单击可编辑链接时,我没有看到突出显示为选定的当前值。关于为什么会发生这种情
我正在尝试使用 editable("destroy") 打开和关闭 xeditable。 Xeditable 关闭但不会重新打开。该函数如下所示: $("#changeType").on("chang
你好,这是我的内联网格编辑代码。 我想在几列上禁用可编辑的内联网格编辑 这是我的代码 "columnDefs": [ {'targets': '_all',
我希望通过单击“添加行”按钮,新行将位于顶部表格上。我有这个基本的 example 。 我尝试向下面的函数添加过滤器,但得到了相同的结果。 // add user $scope.addUser = f
我正在尝试使 xeditable textfield 的宽度随着输入文本的增加或减少。我尝试了以下代码但没有结果。 $('.editable-input').keyup(function()
我是一名优秀的程序员,十分优秀!