内联可编辑字段在单击后消失
当我加载页面时,会出现所有字段,但是当我单击它们时,单击的字段就会消失。但是,没有任何更改应用于数据库。
这是代码:
function page_users_listing($p){
$g = $this->add('Grid');
$g->addColumn('inline','first_name');
$g->addColumn('inline','last_name');
$g->addColumn('text','telephone');
$g->addColumn('expander','comments');
$g->setSource('client');
}
我可能会错过什么?
When I just load the page there are all the fields, but when I click on them, then the clicked field just disappears. However, no changes are applied to DB.
This is the code:
function page_users_listing($p){
$g = $this->add('Grid');
$g->addColumn('inline','first_name');
$g->addColumn('inline','last_name');
$g->addColumn('text','telephone');
$g->addColumn('expander','comments');
$g->setSource('client');
}
What could I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
4.0.3 似乎工作得很好。
http://codepad.agiletoolkit.org/editablef
如果您使用的是 4.1 分支,则可能需要做一些事情随着“重新加载”机制的变化,这是一个错误。
It seems to work fine with 4.0.3.
http://codepad.agiletoolkit.org/editablef
If you are on 4.1 branch it might have something to do with changes to "reloading" mechanism and is a bug.