I have one raddatetimepicker in my page. I am getting one date as string like this in javascript "2014-06-03T23-00-00Z"
I want to set this date to my raddatetimepicker.
I tried using this Set the date to raddatepicker by using Javascript
But it is not working.
I also tried like this
var myDate = "2014-06-03T23-00-00Z";
var cdate = myDate.replace('T', ' ').replace('Z', '');
$find("<%= fromDate.ClientID %>").set_selectedDate(dt);