私はAngularJS UIグリッドを使用しており、価格をフィルタリングしようとしています。フィルタリングは、10進数の後ろの0以外の数字のものであれば問題ありません。セルの@ドキュメントごとに 'numberstr' 'type' 属性にAngularJS UIグリッド、0.00円で通貨をフィルタする方法
$scope.GridOptions = {
enableFiltering: true,
rowEditWaitInterval: -1,
multiSelect: true,
enableColumnMenus: false,
columnDefs: [
{ name: 'Name', field: 'Item', width: '15%' },
{ name: 'Price', field: 'Price', type: 'number', cellFilter: 'currency', width: '6%' },
{ name: 'Current Price', field: 'CurrentPrice', type: 'number', cellFilter: 'number: 2', width: '12%' }
]
2 after decimal、 0 after decimal
angs jsには通貨フィルタが組み込まれています。テンプレートでは、{{item_price |あなたが必要としている場合はng-repeatの内側にあります。 – Peege151
通貨として読んでいますが、「.0」を読むものはまだ除外しています。 – Thecor