hello
my string date
Database from date = “30/07/2014”; dd/MM/yyyy
$('#ActiveContractStartDate').jqxDateTimeInput('setDate',"07,30,2014"); // page output successfully = 30/07/2014
But this does not happen
$('#ActiveContractStartDate').jqxDateTimeInput('setDate',"30,07,2014"); // page output Unrelated a date = 07/06/2016
I tried this, but it did not improve
$("#ActiveContractStartDate").jqxDateTimeInput({formatString:"dd/MM/yyyy", width: '250px', height: '34px'});
$(‘#ActiveContractStartDate’).jqxDateTimeInput(‘setDate’,”30,07,2014″); or
$(‘#ActiveContractStartDate’).jqxDateTimeInput(‘setDate’,”30/07/2014″);`
and agein age output Unrelated a date = 07/06/2016
How can I enter in this format? “30/07/2014”;