package com.fzzy.d7;
|
|
import com.bstek.dorado.data.listener.GenericObjectListener;
|
import com.bstek.dorado.view.widget.treegrid.DataTreeGrid;
|
|
/**
|
* 添加监听全局的DataTreeGrid的基本调整
|
*
|
* @author Andy
|
*
|
*/
|
public class DataTreeGridListener extends GenericObjectListener<DataTreeGrid> {
|
|
@Override
|
public boolean beforeInit(DataTreeGrid grid) throws Exception {
|
grid.setRowHeight(46);
|
grid.setHeaderRowHeight(46);
|
return true;
|
}
|
|
@Override
|
public void onInit(DataTreeGrid grid) throws Exception {
|
|
}
|
|
}
|