MindFusion.Scheduling for JavaScript 릴리스

릴리스 전반에서 새로 나온 내용을 살펴보세요. 기능, 개선 사항, 해결된 문제에 대한 자세한 정보를 제공합니다.

1월
2월
3월
4월
5월
6월
7월
8월
9월
10월
11월
12월
MindFusion.Scheduling for JavaScript V2.32025년 10월 1일
기능

Localization Improvements

  • MindFusion.Scheduling now uses the Intl API for localized formatting of dates and times.
  • All properties of the Calendar control, that used to contain a format string, should now be set to an Intl.DateTimeFormat options object.
  • The following list contains the fields and values that can be set in the options object:
    • weekday: 'narrow' | 'short' | 'long'
    • era: 'narrow' | 'short' | 'long'
    • year: 'numeric' | '2-digit'
    • month: 'numeric' | '2-digit' | 'narrow' | 'short' | 'long'
    • day: 'numeric' | '2-digit'
    • hour: 'numeric' | '2-digit'
    • minute: 'numeric' | '2-digit'
    • second: 'numeric' | '2-digit'
    • timeZoneName: 'short' | 'long'
    • timeZone: 'Asia/Shanghai'
    • hour12: true | false
    • hourCycle: 'h11' | 'h12' | 'h23' | 'h24'
    • formatMatcher: 'basic' | 'best fit'
MindFusion.Scheduling for JavaScript V2.22025년 7월 22일
기능
  • repainted event raised after Calendar updates its DOM elements, letting you adjust their content or layout.
  • realGroupType property returns the effective GroupType.
  • buttonClick event is now also raised when calendar is disabled (enabled property set to false).
  • Improved React wrapper component in sample projects.
수정 사항
  • Fixed exceptions when saving Schedule with recurrent events to JSON.