2016年9月8日 星期四

[jqGrid]百分比顯示並排序

jqGrid將數值格式化為百分比顯示,並可排序 。

colModel: [
                   { name: 'Enrollment', width: 1, align: 'center', formatter: 'currency', formatoptions: { suffix: '%' }, sorttype: 'currency' }
        ]

[C#]Math.Round 方法


取小數點兩位數
Math.Round(99.110000,2) //99.11

其他用法詳見MSDN
https://msdn.microsoft.com/zh-tw/library/system.math.round(v=vs.110).aspx


Visual Studio JS intellisense 失效解決方式

  試了好久,發現到工具>選項>IntelliCode js項目設定啟用,重新開啟VS就正常了! 後來發現是TypeScript3.2版有問題停用,使用4.3版的TypeScript即可