MindFusion.Scheduling for JavaScript のリリース

Released: Oct 1, 2025

V2.3 での更新項目

機能

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...

Released: Jul 22, 2025

V2.2 での更新項目

機能

  • 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.

Released: Jan 5, 2022

V2.0 での更新項目

機能

  • ECMAScript 6 (ES6) modules
    • JsScheduler distribution now includes a set of ES6 modules, in Scripts/esm folder, that lets you import classes from respective scripts.
    • The distribution still includes ES5-compatible scripts located in Scripts/umd folder, which are transpiled from current ES6 code, and whose classes are exposed as members of global MindFusion namespace object as in previous versions.
  • Localization improvements - Calendar date and time localization can now be done via the CLDR locale...

Released: Jan 23, 2019

V1.2 での更新項目

機能

Calendar

  • startTime and endTime read-only properties return the time of the first and last visible calendar cells.
  • itemsStartTime and itemsEndTime read-only properties return the time of the first and last calendar cells, that can contain items.
  • getItemCells method returns the calendar view cells that hold the specified item's visual elements.
  • getCellItems method returns the items, whose visual elements are contained in the specified calendar cell.
  • getItemDom method returns the specified item...

Released: May 11, 2018

V1.1 での更新項目

機能

  • New Properties - New ItemSettings.titleFormat and ItemSettings.tooltipFormat properties help improve the appearance of schedule Items.
  • VSDoc Intellisense - The MindFusion.Scheduling-vsdoc.js file that is included in the distribution archive now lists all properties of a class, not only the class and its methods. All members are listed with their brief API description.
  • React Samples - All samples can now be run using “create-react-app”.
  • API Documentation Includes Class Inheritance - The...