If I define the columns templates within the html (inline) I can access the row object by using prop="".
However, if I define the columns imperatively with TemplateRef, this trick doesn't work anymore. Is there an alternative way?
You mean something like <template let-row="row" let-value="value" swui-datatable-cell-template> ?
Then you can easily access row with row.
yeah.. that did the trick.
thanks!
Most helpful comment
You mean something like
<template let-row="row" let-value="value" swui-datatable-cell-template>?Then you can easily access row with
row.