🗒️
ngx-datatable
  • Introduction
    • Features
    • Architecture
    • Installing
    • Themeing
    • Getting Started
    • Change Detection
  • API
    • Table
      • Inputs
      • Outputs
      • Methods
      • Internals
    • Column
      • Inputs
      • Modes
      • Internals
    • Row Detail
      • Inputs
      • Outputs
    • Row
      • Custom row wrapper
  • Demos
    • Online
    • Source Code
  • Contributing
    • Building
    • Guidelines
    • Community
    • Credits
  • Changelog
Powered by GitBook
On this page
  • rowDef
  • datatable-row-def

Was this helpful?

  1. API
  2. Row

Custom row wrapper

Use to pre-apply directives at row level.

rowDef

Directive to be applied on ng-template.

datatable-row-def

Component to be used as content of ng-template. Apply your custom row level directive/class on this component. Example:

Template

<ng-template rowDef>
  <datatable-row-def applyYourCustomDirectiveHereForRow />
</ng-template>
PreviousRowNextDemos

Last updated 7 months ago

Was this helpful?