Hello there I am new to dojo and I have a problem with adding dijit.form object to existing tag. When doing so I am losing all of the original attributes in the input tag. My code is very simple, see example below. In the example below the name and value attribute of input(username) are gone after the initiation of the object.
The question, is is it normal?
form.js file
var username = new dijit.form.TextBox({
trim: true
},dojo.byId("form_username"));form.html file
