sgj
18 小时以前 c1082c999e7cb35395ace980f2c521c1e8b0998e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.fzzy.d7;
 
import com.bstek.dorado.data.listener.GenericObjectListener;
import com.bstek.dorado.view.widget.tree.DataTree;
 
/**
 * 添加监听全局的DataTree的基本调整
 * 
 * @author Andy
 *
 */
public class DataTreeListener extends GenericObjectListener<DataTree> {
 
    @Override
    public boolean beforeInit(DataTree grid) throws Exception {
        grid.setRowHeight(46);
        return true;
    }
 
    @Override
    public void onInit(DataTree grid) throws Exception {
 
    }
 
}