Hi,
If CRM finds a null value in the date and time field then it automatically populates the time value to 12:00AM either you can set any other value or can hide the time field and will show once date value will be selected.
Hide Time Field (Its works altough unsupported Customization)
document.getElementById("new_fieldname").childNodes[1].childNodes[0].childNodes[0].style.display = "none";
document.getElementById("new_fieldname").childNodes[1].childNodes[0].childNodes[1].style.display = "none";
Jehanzeb Javeed
http://worldofdynamics.blogspot.com
Linked-In Profile |CodePlex
Profile
If you find this post helpful then please "Vote as Helpful" and "Mark As Answer".