Is there a way to force the user to use the date picker?
In other words, I want to NOT let them enter a date manually in the text box.Thanks
You may simply use Startup Script to set the readonly attribute, for example:$(“#x_OrderDate”).attr(“readonly”, true);
Just what I needed. Thank you.