Is there a way to set options for all dateeditors on the site? I'd rather not set the same options on each dateeditor individually. I'm looking from something similar to the jquery datepicker settings: $.datepicker.setDefaults()
Specifically, I want to set selectionOnFocus to "start" for all dateeditors.
Hello Julie,
Thank you for using our community.
What you can do in order to achieve the described functionality is creating an object that contains all of the desired properties and then use it for all of the editors.
var options = { width: 300, value: new Date(), selectionOnFocus: "atStart" };
$("#dateEditor").igDateEditor(options);$("#dateEditor1").igDateEditor(options);
Please try this approach and if you have further questions, don’t hesitate to contact us.
Best Regards,Marina Stoyanova,Software Developer,Infragistics, Inc.