基于easyui1.2.2的datebox控件修改成的年月控件 有完整例子可以查看
2023-12-15 07:01:57 234KB easyui javascript
1
修改extjs控件,支持只选择年月,或者只选择年。 只要设置format:“Y-m”,"Y"即可。 xtype:'monthfield' 因为extjs的bug(3月30如果选择2月将自动变成3月)。所以需要修改monthField中safeParse方法: else if ("Y-m"==format) { // set time to 12 noon, then clear the time var parsedDate = Date.parseDate(value + '-01 ' + this.initTime, format + '-d ' + this.initTimeFormat); if (parsedDate) return parsedDate.clearTime(); } else if ("Ym"==format) { // set time to 12 noon, then clear the time var parsedDate = Date.parseDate(value + '01 ' + this.initTime, format + 'd ' + this.initTimeFormat); if (parsedDate) return parsedDate.clearTime(); }
2022-03-20 10:33:46 12KB extjs 年月控件 年份控件
1
js时间控件只显示年月,目前测试支持多版本的浏览器。例如ie6,ie7,ie8等低版本ie浏览器。代码由别的年月控件修改而成,样式参考:layui
2021-11-02 17:05:43 5KB js 年月控件
1
实现年月控件如:2014-06 或201406(可视化) 双击年月,控件消失、中英文版本国际化、日期合法性校验、完美实现IE,火狐,谷歌等浏览器
2019-12-21 22:16:31 16KB extjs4.2 monthfield js
1