It seems that dojo has a hard time attaching a dijit to a textfield whose name property contains an apostrophe...
As I am using Struts2 (that relies on OGNL), a property backed by a Map might look like this:
<input type="text" name="countryName['en']" id="countryInEnglish" />
If I try to attach a dijit.form.ValidationTextBox to that node, dojo turns the name property into: ""
Is there a way of preserving the name of the property as I intend it?
(I tried escaping the apostrophe, to no avail.)
