Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Scheduling for JavaScript, V2.3 (Read 649 times)
Forum Admin
YaBB Administrator
*****
Offline


Rock and Roll

Posts: 740
Joined: Apr 6th, 2003
Scheduling for JavaScript, V2.3
Oct 12th, 2025 at 10:05am
Print Post  
We have released version 2.3 of MindFusion Scheduling library for JavaScript. It contains the following new features and improvements:

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, e.g.:

Code
Select All
settings.generalFormat = "dd MMMM"; 



must be changed to

Code
Select All
settings.generalFormat = { day: '2-digit', month: 'long' }; 



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'


The latest version can be downloaded here, or from the clients area on our site:

https://mindfusion.dev/JsScheduler.zip

Updated scripts are also available as @mindfusion/scheduling NPM package.

Enjoy!
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint