Is there any way to set constraint such a way that users will not be able to type any characters in xe:djDateTextBox control? I have tried following for inputText :
<xp:inputText id="totalDays"
style="width:25px" onkeydown="return false;"
onkeypress="return false;">
But I am not able to find some events/code where I can control users inputting into the djDateTextBox control. I have tried below but didn't work :(
<xp:inputText id="inputText1" dojoType="dijit.form.DateTextBox" onkeydown="return false;"
onkeypress="return false;"></xp:inputText>
Please help me....