TAB页面上table上的数据过滤问题

TAB页面上table上的数据过滤要在初始化时就加载,一般写在AppBean里或者通过界面帮定关系来显示,在AppBean里主要是通过initializeApp()方法来实现。[@more@]

比如:

public void initializeApp() throws MXException, RemoteException {

MXSession mxsession;
mxsession = getMXSession();
if (mxsession == null) return;

String initWhere = "SUBTYPE='SAFE'";
if (initWhere != null) {
setAppWhere(initWhere);
reset();
if (resultsBean != null) {
resultsBean.setAppWhere(initWhere);
resultsBean.reset();
}
if (quickFindRemote != null) {
quickFindRemote.setAppWhere(initWhere);
quickFindRemote.reset();
}
}
super.initializeApp();
}

public int INSERT() throws MXException, RemoteException {
int rv = super.INSERT();
OPManagerDeskMbo mbo = (OPManagerDeskMbo) getMbo();
if (mbo == null || "".equals(mbo)) {
throw new MXApplicationException("", "取得的记录为空");
}
mbo.setValue("SUBTYPE", "SAFE");
return rv;
}