`
lidg
  • 浏览: 5102 次
社区版块
存档分类
最新评论
文章列表
记得Dephi里有一个叫Lookup效果的Grid(不知道是不是这种叫法),就是如何在Grid中显示或编辑代码数据项,下面就是Ext的实现 希望对有这种需求的同学有所帮助。 一、重写Ext.grid.GridEditor让Editor控件获得Grid的当前行数据,代码如下,大家可以对照原来Ext.grid.GridEditor的源码 Ext.grid.GridEditor = function(field, config){ Ext.grid.GridEditor.superclass.constructor.call(this, field, config); fiel ...
为了用grails实现无限级分类的应用如组织机构、目录、系统菜单等,我碰了几次错,现终于解决了,写出来做个记录. 如果要实现无限级的系统菜单,我们实现的类如下 class SystemMenu { String name; String description; SystemMenu parent; static belongsTo =[parent:SystemMenu ] static hasMany = [childrens:SystemMenu]; } 意思是:一个菜单项属于它的上级菜单[parent],同时又有它的子菜单[child ...
Global site tag (gtag.js) - Google Analytics