Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/framework/angular/angular-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Example:
})
```

```angular2html
```angular-html

<tbody>
@for (row of table.getRowModel().rows; track row.id) {
Expand Down Expand Up @@ -89,7 +89,7 @@ In most cases, each TemplateRef will be rendered with the $implicit context valu
- Cell: `CellContext<T, ?>`,
- Footer: `HeaderContext<T, ?>`

```angular17html
```angular-html

<ng-container
*flexRender="
Expand All @@ -111,7 +111,7 @@ In most cases, each TemplateRef will be rendered with the $implicit context valu

Full example:

```ts
```angular-ts
import type {
CellContext,
ColumnDef,
Expand Down Expand Up @@ -251,7 +251,7 @@ is then defined to be used in the component. If any of the context properties ar
needed in your component, feel free to use them. Please take note that only input signal is supported,
when defining access to context properties, using this approach.

```ts
```angular-ts
@Component({
template: `
<input
Expand Down