|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
怎么最简单的实现页面上的某数值显示时为###,###,###.00的格式,更新时候为正常数值呢?oaf有没有系统功能实现这个的?先谢谢各位啦!新手望赐教
牛牛回答:
1. 在Advance Table中,将数字10000格式化为10,000的方法
OAAdvancedTableBean tableBean = (OAAdvancedTableBean)webBean.findChildRecursive("xLinesAdvRN");
if(tableBean != null)
{
OAMessageStyledTextBean Bean = (OAMessageStyledTextBean)webBean.findChildRecursive("xCal");
if(Bean != null)
{
Formatter formatter = new OADecimalValidater("#,###,###,##0.00;(#,###,###,##0.00)", "#,###,###,##0.00;(#,###,###,##0.00)");
Bean.setAttributeValue(ON_SUBMIT_VALIDATER_ATTR, formatter);
}
} |
|