When using the DatePicker throught MVC helpers it seems that we can't define the datepickerOptions as it possible in the client API
Is there aomething that I miss ? Can I hope that it will be added in future release ?
Hi Nivet,
It's not supported via the MVC Helper. You can set datepickerOptions, once the editor gets rendered.
Here is an example how you can set the option:
$(".selector").igEditor("option", "datepickerOptions", { firstDay: 1 });
Hope that helps,
Thanks