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
If the grid uses subrows, the 'set' functions is ignored for all subrows but the last one.
The DGrid calls _configColumns() for each subrow. The _StoreMixin clears this._columnsWithSet in its _configColumns(). Thus only the last subrow's 'set' functions finally stored in this._columnsWithSet.
The text was updated successfully, but these errors were encountered:
Updated _StoreMixin to reset _columnsWithSet only when configStructure() is called,
rather than resetting it everytime _configColumns() is called because
_configColumns() is called multiple times for column configurations
containing subRows.
If the grid uses subrows, the 'set' functions is ignored for all subrows but the last one.
The DGrid calls _configColumns() for each subrow. The _StoreMixin clears this._columnsWithSet in its _configColumns(). Thus only the last subrow's 'set' functions finally stored in this._columnsWithSet.
The text was updated successfully, but these errors were encountered: