You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I may be revealing my ignorance here, but doesn't code like this cause memory leaks when we destroy and re-create grids repeatedly?
listen(row,"click,keydown",function(event){// respond to click, space keypress, or enter keypressif(event.type=="click"||event.keyCode==32/* space bar */||(!has("opera")&&event.keyCode==13)/* enter */){vartarget=event.target,
The handler returned from dojo/on is not being stored anywhere, to be removed on destruction of the component.
The text was updated successfully, but these errors were encountered:
I may be revealing my ignorance here, but doesn't code like this cause memory leaks when we destroy and re-create grids repeatedly?
The handler returned from
dojo/on
is not being stored anywhere, to be removed on destruction of the component.The text was updated successfully, but these errors were encountered: