Archive: ExtJS
-
十 08, 2010
No CommentsExt-JS Grid中诡异的时间问题
问题描述: 项目中需要用到Ext-JS带过滤功能的Grid插件,即Grid...
-
七 09, 2010
No CommentsNumber Format for Grid Panel
requirement: For different columns in grid panel, we need different precision. solution: renderer: Ext.util.Format.numberRenderer(”0.00000″), examples: (123456.789) * 0 – (123456) show only digits, no precision * 0.00 – (123456.78) show only digits, 2 precision * 0.0000 – (123456.7890) show only digits, 4 precision * 0,000 – (123,456) show comma and digits, no precision * 0,000.00 – (123,456.78) show comma and digits, 2 precision * 0,0.00...