我使用Angular with handsontable创建一个可编辑的表。
我需要为所有数字字段格式化我的表格,看起来像这样
1,000.00 USD
当然,美元并未固定,实际上是从API中读取的。
我已尝试将格式设为“0,0.00美元”和“0,0.00美元”
我找到的只是一种通过$使用它的方法,并启用语言或文化变量,这不是一个有效的答案。
答案 0 :(得分:0)
添加角度scala> case class myInt(i: Int){
| def mult(that: Int): myInt = myInt(that * i)
| }
defined class myInt
scala> implicit class intOverride(i: Int){
| def *(that: myInt): myInt = that.mult(i)
| }
defined class intOverride
scala> val a = myInt(2)
a: myInt = myInt(2)
scala> 2 * a
res1: myInt = myInt(4)
filter
或者您可以使用
<tr>
<td>{{amount | currency:"USD$"}}</td>
</tr>
金额应该是
或者您可以参考angular filter
答案 1 :(得分:0)
如果您使用此类型,则可以使用此代码。只更改此行
format: '0,0.00'
data: "gt_base",
type: 'text',
format: '0,0.00',