文章列表
strtus2项目,tomcat正常启动后,出错。但程序可以运行。
错误代码:
[ERROR] [http-8080-2] - org.apache.struts2.dispatcher.Dispatcher - com.opensymphony.xwork2.util.logging.commons.CommonsLogger.error(CommonsLogger.java:27) - Could not find action or result - 2011-12 -20 16:13:26
There is no Action mapped for namespace / and ac ...
listgrid 得到编辑的新值
- 博客分类:
- smartgwt
今天在做smartgwt的listgrid(或treegrid)组件的双击编辑功能,输入的新值通过addRowEditorExitHandler得不到,郁闷了好几个小时,最终研究明白了,是通过listgrid的addEditCompleteHandler编辑完成事件来得到,通过addEditCompleteHandler事件监听的event.getNewValues()得到map类型的返回值,map的内容是(字段名:新值),一行里没有修改的字段不出现在map里,而且可以通过 event.getOldRecord();得到旧数据的行,可以得到id等字段的值,下面是代码,希望对你有帮助
...