首页 > 代码库 > NC 6.X笔记(编辑中)

NC 6.X笔记(编辑中)

1、参照多选写在编辑前事件中((UIRefPane) editor.getBillCardPanel().getBodyItem("pk_wa_item").getComponent()).setMultiSelectedEnabled(true);这个是表体

 

技术分享


 执行公式:

 public String getNameByID(String tablename, String name, String colNm,            String id) {        nc.ui.pub.formulaparse.FormulaParse parse = new nc.ui.pub.formulaparse.FormulaParse();        String express = "name->getColValue(\"" + tablename + "\", \"" + name                + "\", \"" + colNm + "\", value)";        // 设置公式        parse.setExpress(express);        // 添加参数        List<String> list = new ArrayList<String>();        list.add(id);        parse.addVariable("value", list);        // 结果        String[] values = parse.getValueS();        return values == null ? null : values[0];    }

  


 

<!-- 显示合计行 --><property name="showTotalLineTabcodes">	<list>		<value>pk_payinfo_b</value>		<value>pk_inputtaxinfo_b</value>	</list></property>----在billFormEditor参数下加

  


 

NC 6.X笔记(编辑中)