当尝试从共享的数据表中保存信息时,我在查看数字的法语区域设置时遇到了问题,因为当我保存时,数字被保存为视图中显示的内容(即逗号而不是句点来表示小数地方)。
parent.widgets.pagingDataTable = new Alfresco.util.DataTable({
dataTable: {
container: parent.id + "-datatable",
columnDefinitions: columnDefinitions,
config: {
MSG_EMPTY: parent._msg("message.noProducts"),
responseType: YAHOO.util.DataSource.TYPE_JSON,
responseSchema: {
resultsList: "productList",
fields: ["photo", "unitQuantity", "minQuantity", "unitPrice", "descriptionProduct"],
},
currencyOptions: {suffix: '€', decimalPlaces: 2, decimalSeparator: ',', thousandsSeparator: '.'},
}
}
有人在 YUI 2 中遇到过货币格式化程序和本地化的问题吗?