Skip to content

Commit

Permalink
fix(table): documents ie11 limitation of pinMode (#64)
Browse files Browse the repository at this point in the history
Closes #58
  • Loading branch information
kyubisation authored Jun 28, 2019
1 parent d2846ad commit f232240
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h4 class="sbbsc-block">Properties</h4>

<h4 class="sbbsc-block">Pin Mode</h4>
<sbb-field label="Pin Mode" mode="default" class="sbbsc-block">
<sbb-checkbox [(ngModel)]="isFirstColumnPinned">Pin the first column</sbb-checkbox>
<sbb-checkbox [(ngModel)]="isFirstColumnPinned">Pin the first column (Not supported in IE11)</sbb-checkbox>
</sbb-field>

<h4 class="sbbsc-block">Text Alignment *</h4>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ You can use table component to display rows of data as see below
</sbb-table>
```

<h4>Remove/Reset table content</h4>
### Pin Mode

The sbb-table provides a pin mode, which pins the first column the the left side.
This is not supported in IE11.

### Remove/Reset table content

You can also remove a row or more rows from the table with removeRow() function:

Expand All @@ -47,7 +52,7 @@ resetRows() {
}
```

<h4>Filter table content</h4>
### Filter table content

It is possible to search specific content of the table using a filter function:

Expand Down

0 comments on commit f232240

Please sign in to comment.