Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Row Detail View (new feature)

Choose a tag to compare

@ghiscoding ghiscoding released this 12 Feb 22:57
· 3459 commits to master since this release

Features

  • (RowDetail): add new Row Detail View feature, closes #118
  • (event): add onExtensionRegistered to 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.updateRow instead of grid.invalidateRow
    • when updating a row, the previous code was calling invalidateRow which destroy the entire row and recreates it, it's better to use updateRow since 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