Can anybody help me Hide the date part of a Date/Time field. I only want to see the Time field displayed.
i have the code for CRM 4.0 need help with CRM 2011
Thanks
Tony
document.getElementById("new_bankholidaystart").childNodes[0].childNodes[0].style.display = "none";
document.getElementById("new_bankholidaystart").childNodes[0].childNodes[1].style.display = "none";
var date = new Date(); date.setHours(8, 30, 0, 0); crmForm.all.new_bankholidaystart.DataValue = date;