I ran into an issue with a read-only calendar input box. I need to send a date value to it through Selenium VBA. Here is the snippet of the HTML code I'm looking at:
<input class="dxeEditArea dxeEditAreaSys" id="pickupDate_I"
name="ctl00$ctl00$MainPane$Content$MainContent$OPUserControl$pickupDate"
onfocus="ASPx.EGotFocus('pickupDate')" onblur="ASPx.ELostFocus('pickupDate')"
onchange="ASPx.EValueChanged('pickupDate')" type="text" readonly="">
I put a solution I ended up using as a JS code below as a separate answer.