package nc.ui.fytz.hytz.view;
public class HytzBillForm extends ShowUapbleBillForm {
public HytzBillForm(){
super();
}
@Override
public void initUI(){
super.initUI();
//在哪个页签,禁止哪些字段进行排序
this.billCardPanel.getBillModel("").setSortColum(new String[]{"",""});
//禁止排序
this.billCardPanel.getBillTable("").setSortEnabled(false);
}
}
界面根据字段排序
this.getBillListPanel().getHeadBillModel().sortByColumn("pk_head", true); //根据PK排序