I added dojo.connect
statement like this,
dojo.connect(dojo.byId(this._paramsForm), "onChange", this, "_handleUpdate");
At this point, when I browser debug and check the values, this._paramsForm
has valid values.
But when the event is getting triggered, onChange
function is not being called. There must be some problem in the dojo.connect
statement, but not able to trace it.
Tried this one as well, No luck :(
dojo.connect(this._paramsForm, "onChange", this, "_handleUpdate");
Referred this link as well, no luck dojo.connect won't connect 'onclick' with button
But the same thing is working absolutely fine in Chrome and Firefox.
Please help me to fix this issue!