真心求解,为啥我的EXTJS的可编辑表格就是点击没反应不能编辑呢,我明明设置了editor
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了真心求解,为啥我的EXTJS的可编辑表格就是点击没反应不能编辑呢,我明明设置了editor相关的知识,希望对你有一定的参考价值。
你的grid是 Ext.grid.EditorGridPanel 吗???header : "aaa",width : 150,sortable : true,align : "center",dataIndex : "payer"
,editor : new Ext.form.TextField()
Ext.grid.ColumnModel([,]) 中是这么写的吗?
满足以上两点,且你的grid能正常显示数据,那就应该可以编辑了 参考技术A 你不粘代码谁知道什么问题追问
多谢啊,已经解决了
在 Meteor 中使用 AutoForm 的可编辑表格
【中文标题】在 Meteor 中使用 AutoForm 的可编辑表格【英文标题】:Editable table with AutoForm in Meteor 【发布时间】:2015-02-13 09:49:56 【问题描述】:如何在 Meteor 中制作带有输入字段的表格。我使用了来自 http://autoform.meteor.com/update-each 的示例,但它们只使用 1 个输入字段。
该功能适用于以下代码:
<tbody>
#each persons
#autoForm id=makeUniqueID type="update" collection=Collections.Persons doc=this autosave=true
<tr>
<td>> afFieldInput name="fullName" label=false</td>
<td>> afFieldInput name="email" label=false</td>
<td>> afFieldInput name="address" label=false</td>
<td><button type="submit" class="btn btn-xs btn-danger">Delete</button></td>
</tr>
/autoForm
/each
</tbody>
但它在每个<tr>
周围创建了一个<form>
元素,它搞砸了我的html。正确的做法是什么?
【问题讨论】:
表格中的表单不是有效的 HTML。表格应该环绕在桌子周围,或者应该在<td>
内。更多信息:***.com/questions/14576976/…
但 #autoForm id=makeUniqueID type="update" collection=Collections.Persons doc=this autosave=true
必须在我的每个循环中。所以我不知道该怎么办。
您可以使用 div 代替表格,并伪造表格布局。 ***.com/questions/11049149/…
@Jamgreen 你找到解决方案了吗?我也面临同样的问题
【参考方案1】:
将div
s 与 CSS 一起使用:
<div class="table">
#each persons
autoform class="tr"
<div class="td">> afQuickField</div>
<div class="td">> afQuickField</div>
<div class="td">> afQuickField</div>
/autoform
/each
</div>
并将其设置为:
.table
display: table;
.tr
display: table-row;
.td
display: table-cell
【讨论】:
以上是关于真心求解,为啥我的EXTJS的可编辑表格就是点击没反应不能编辑呢,我明明设置了editor的主要内容,如果未能解决你的问题,请参考以下文章
我在做多重响应分析时,为啥我编辑好变量之后,在定义变量集时在左侧列表框里没有变量呀。求解,谢谢。