Hi Stef,
After the Form is created, you can get any of its fields and customize it.
Ex:
var btn = sampleForm.jqxForm('getComponentByName', 'submitButton');
btn.on('click', function () {
// function: submit
// arg1: url
// arg2, optional: target, default is _blank
// arg3, optional: submit method - GET or POST, default is POST
sampleForm.jqxForm('submit', "https://www.jqwidgets.com/form_demo/", "_blank", 'POST');
});
So you can get the DateTimeInput component and set its “culture” property. Make sure that the globalize.js culture file is loaded as well.
Regards,
Peter
jQWidgets Team
https://www.jqwidgets.com