Opened 8 years ago
Closed 7 years ago
#18077 closed defect (patchwelcome)
Textarea: intermediateChanges and onChange event - fires on blur event
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | 1.13 |
Component: | Dijit - Form | Version: | 1.9.3 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
When I use this in form control inside widget template
data-dojo-props='intermediateChanges:true' data-dojo-attach-event='onChange : update'
it fires on focus change. No data change, only click into another form control.
Change History (3)
comment:1 Changed 8 years ago by
comment:2 Changed 8 years ago by
Component: | Dijit → Dijit - Form |
---|---|
Summary: | intermediateChanges and onChange event - fires on blur event → Textarea: intermediateChanges and onChange event - fires on blur event |
comment:3 Changed 7 years ago by
Milestone: | tbd → 1.12 |
---|---|
Resolution: | → patchwelcome |
Status: | new → closed |
Given that no one has shown interest in creating a patch in more than a year, I'm closing this as patchwelcome. Please let us know if you would like to get involved in helping make this change to Dojo!
Note: See
TracTickets for help on using
tickets.
<label>A</label> <div name="a" data-dojo-props="intermediateChanges:true" data-dojo-type="dijit/form/Textarea" data-dojo-attach-event="onChange : update"></div>
<label>B</label> <div name="b" data-dojo-props="intermediateChanges:true" data-dojo-type="dijit/form/Textarea" data-dojo-attach-event="onChange : update"></div>
If I click into one textarea, no changes and then into another textarea, onChange event is fired. I want onChange no onFocus.