It can be done in the latest release:
Code: [Select]
IvyOptions.ToDateFormatMonthFirst = true;If you are using IvyTemplateEditor it can be set on the template level (Template Settings / Template Custom Code):
Code: [Select]
protected override void Init()
{
IvyOptions.TableCellType = TableCellType.String;
IvyOptions.ToNumberCultureInfo = new CultureInfo("fr-FR");
IvyOptions.ToDateFormatMonthFirst = true;
}
Regards,
Ivy Team

