Skip to content

DataTables

The DataTables module provides specialized table components for displaying data from queries and observable queries.

  • DataTableForQuery: For standard queries with pagination
  • DataTableForObservableQuery: For observable queries with real-time updates

Use DataTableForQuery when:

  • You have standard query results
  • You need server-side pagination
  • Data doesn’t need real-time updates

Use DataTableForObservableQuery when:

  • You need real-time data synchronization
  • Data changes frequently
  • You want automatic UI updates

Both table components share:

  • Single row selection
  • Global filtering
  • Custom column templates
  • Empty state messages
  • PrimeReact Column support