首页 > 代码库 > 表格内数字按千分位进行格式化
表格内数字按千分位进行格式化
方法一:
DisplayInputFormat.DisplayInputFormat(webBean, "DepositAmountTE", ON_SUBMIT_VALIDATER_ATTR);
public static void DisplayInputFormat(OAWebBean webBean,String lv_findchild,oracle.cabo.ui.AttributeKey key) { //Added by Tommy on 2012-09-08 for REQ031. //数字格式化 Formatter formatter = new OADecimalValidater("#,###,###,##0.00;-#,###,###,##0.00", "#,###,###,##0.00;-#,###,###,##0.00"); OAMessageTextInputBean lv_item1 = (OAMessageTextInputBean)webBean.findChildRecursive(lv_findchild); if (lv_item1 != null) lv_item1.setAttributeValue(key, formatter); }
但是此方法有个问题,若表格中有合计值,合计无法被格式化
方法二:使用币种格式化处理
OAWebBean DepositAmountTEBean = webBean.findChildRecursive("DepositAmountTE"); if (DepositAmountTEBean != null) { DepositAmountTEBean.setAttributeValue(OAWebBeanConstants.CURRENCY_CODE, "CNY"); }
表格内数字按千分位进行格式化
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。