- 注册时间
- 2012-3-31
- 最后登录
- 2019-4-2
- 阅读权限
- 150
- 积分
- 18852
- 精华
- 0
- 帖子
- 8776
|
逍遥蓝云 发表于 2013-12-23 17:36
还有个问题 miniui控件的高度在哪设置啊
1.- var tip = new mini.ToolTip();
- tip.set({
- target: document,
- selector: '#id .mini-grid-row',
- onbeforeopen: function (e) {
- e.cancel = false;
- },
- onopen: function (e) {
- var rowIndex = e.element.rowIndex
- var row = grid.getRow(rowIndex)
- tip.setContent("aaaaa");
- }
- });
复制代码 #id来区分需要加tooltip的表格, 通过样式来找到需要tootip的元素,然后通过rowIndex获取到行对象,再做你需要的操作
2.高度需要修改样式
http://www.miniui.com/demo/index.html#src=form/diysize.html
样式都在diysize.css 里面 ,下载的试用包里面有的
|
|