admin管理员组文章数量:1344205
I am using the 'number' type for entering floating point numbers into a jqGrid grid. I am able to format the floats for rendering witha ma (we use a man in Europe as decimal seperator). However the input fields (edit form or inline) still assume that that entered floating point numbers use a dot and not a ma.
formatoptions: {decimalSeperator : ','}
seems to influcence the rendering but not the validation of the input data.
Any reasonable options here?
I am using the 'number' type for entering floating point numbers into a jqGrid grid. I am able to format the floats for rendering witha ma (we use a man in Europe as decimal seperator). However the input fields (edit form or inline) still assume that that entered floating point numbers use a dot and not a ma.
formatoptions: {decimalSeperator : ','}
seems to influcence the rendering but not the validation of the input data.
Any reasonable options here?
Share Improve this question asked Feb 14, 2012 at 11:53 user2665694user2665694 1- I think, The spelling of the word "seperator" is not correct. Modify spelling as "separator" – amin Commented Jul 8, 2018 at 5:26
1 Answer
Reset to default 7You can create your own custom formmaters.
http://www.trirand./jqgridwiki/doku.php?id=wiki:custom_formatter
The guide explains it well. You must create a formmater and an unformmater for editing.
Create a formatting function like this:
<script>
jQuery("#grid_id").jqGrid({
...
colModel: [
...
{name:'price', index:'price', width:60, align:"center", editable: true, formatter:numFormat, unformat:numUnformat},
...
]
...
});
function numFormat( cellvalue, options, rowObject ){
return cellvalue.replace(".",",");
}
function numUnformat( cellvalue, options, rowObject ){
return cellvalue.replace(",",".");
}
</script>
You can also append $ or other formatting in these functions.
本文标签: javascriptjqGrid Number format with comma as decimal pointStack Overflow
版权声明:本文标题:javascript - jqGrid: Number format with comma as decimal point - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742013a2531065.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论