I have a grid and an editor for editing each row values. In my editor, i have a this dijit.form.DateTextBox. I also have submit and cancel button. On Edit button click, i open the grid popup editor, which has 1 form and bunch of other dojo controls including text box. Now i want to use the cancel button to Reset the form and hide the Dojo Grid Popup Dialog. I created a fuction for the same. It works fine when i remove the Javascript which runs after DateTextBox onChange event. It gives me this below error.
Uncaught TypeError: Cannot call method 'getMonth' of null
The javascript i have on DateTextBox onChange event is this.
dojo.connect(dijit.byId("Edit_TrialStartDate"), "onChange", function () {
var item = dojo.date.locale.format(dijit.byId("Edit_TrialStartDate").value, { datePattern: "MM/dd/yyyy", selector: "date" });
dijit.byId("Edit_tTrialStartDate").setValue(item);
});
Because if this error, my grid popup dialog never releases the ID it is registered with. So i can only edit 1 record at a time. When i click on another row Edit button i get this below error.
Uncaught Error: Tried to register widget with id==TrialGridPopUp but that id is already registered
Does anyone have any idea how to resolve this? Please help. Thanks.