如何在韦伊莫日历中将星期一设置为一周的第一天
我正在使用打开的 Wijmo 日历,但找不到将星期一设置为一周的第一天的方法。 有人可以帮我实现这个目标吗?
I’m using wijmo calendar open and I can’t find a way of setting Monday as first day of the week.
Can someone help me achieve this please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Wijmo 在 https://github.com/jquery/globalize 上进行中继(就国际化而言)。
对于 wijmo.datepicker 的选项,您可以传递与此处定义的任何区域性相对应的cultureID https ://github.com/jquery/globalize/tree/master/lib/cultures。
您要查找的值是
firstDay
属性(它在每种文化中都有定义)。它的值对应于天列表中一天的索引,该天将被假定为一周的第一天。 firstDay 设置为0
才能将星期日设置为第一天,并且必须设置为1
才能将星期一设置为一周的第一天。例如,要将文化设置为波兰语(一周的第一天实际上是星期一),您必须执行以下操作:
Wijmo relays (in terms of internationalization) on https://github.com/jquery/globalize.
To the options of wijmo.datepicker you can pass cultureID which corresponds to any culture defined here https://github.com/jquery/globalize/tree/master/lib/cultures.
The value that you're looking for is
firstDay
attribute (it is defined in every culture). Its value corresponds to the index of a day, in a list of days, that will be assumed as first day of the week. firstDay is set to0
to set Sunday as first day, and have to be set to1
to make Monday a first day of the week.For example to set the culture to Polish (for which first day of the week is acutally monday), you have to do something like this: