This repository was archived by the owner on Jun 1, 2025. It is now read-only.
Row Detail View (new feature)
Features
- (RowDetail): add new Row Detail View feature, closes #118
- (event): add
onExtensionRegisteredto a few of the Extensions
Fixes
- (select): again related to commit cdcc979 which was that using multiple select filter and clicking anywhere beside wasn't triggering an Angular event detection
- (select): when destroying Select Filter/Editor, need to escape dot "." in name
- a column definition with "id" that included a dot within it's text was throwing an error
- (FilterService): fix a regression, missing an event
- (updateItem): call
grid.updateRowinstead ofgrid.invalidateRow- when updating a row, the previous code was calling
invalidateRowwhich destroy the entire row and recreates it, it's better to useupdateRowsince that will only re-render the necessary DOM elements instead of destroying/recreating them. - this fixes an issue we had in our App were we updated the item and we had focus on an opened Editor and we were losing the focus since the entire row was being destroying (including the Editor). With the new code, our opened Editor remains open and our row data still gets updated
- when updating a row, the previous code was calling