When I tried onBlur & onFocus in the normal "type=text" box with javascript, I got the proper response. But when I tried with dojo (dojoType=dijit.form.TextBox), I am not getting the response.
The code that I have is:
<input dojoType="dijit.form.TextBox" value="Enter Order Number" id="orderNumberInput"
trim="true" propercase="true"
onFocus="if (this.value==this.defaultValue) this.value='';"
onBlur="if (this.value=='') this.value=this.defaultValue;"/>
trim="true" propercase="true"
onFocus="if (this.value==this.defaultValue) this.value='';"
onBlur="if (this.value=='') this.value=this.defaultValue;"/>
