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
{{ message }}
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
The Ext.grid.column.ComponentColumn component calls its insertComponentForRecord() method from both insertComponents() and itemAdded() methods.
When adding the first record in a grid, Ext JS code implies a refresh() when a row is inserted in the grid but, when the delayed refresh triggers, the item add event from Ext.NET's client-side implementation will still carry on as it would if no refresh was triggered. This in turn makes the insertComponentForRecord() call to trigger both from the usual and immediate itemAdded() and timed insertComponents() methods.
It would probably be best to interrupt the usual event whenever the first element is being added to the grid and let the event thru from the refresh cycle, that is implied from Ext JS primary code and probably avoids other general grid issues once first element is added to grid's view.
The text was updated successfully, but these errors were encountered:
Found: 5.3.0
Ext.NET Forums' thread: Bind event with component column
The
Ext.grid.column.ComponentColumn
component calls itsinsertComponentForRecord()
method from bothinsertComponents()
anditemAdded()
methods.When adding the first record in a grid, Ext JS code implies a refresh() when a row is inserted in the grid but, when the delayed refresh triggers, the item add event from Ext.NET's client-side implementation will still carry on as it would if no refresh was triggered. This in turn makes the
insertComponentForRecord()
call to trigger both from the usual and immediateitemAdded()
and timedinsertComponents()
methods.It would probably be best to interrupt the usual event whenever the first element is being added to the grid and let the event thru from the
refresh
cycle, that is implied from Ext JS primary code and probably avoids other general grid issues once first element is added to grid's view.The text was updated successfully, but these errors were encountered: