Skip to content

Commit

Permalink
[table] Minor documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorehouse committed Jun 26, 2017
1 parent 45ca5b8 commit ad8dc9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/components/table/README.md
Expand Up @@ -314,7 +314,7 @@ trigger the calling of the provider function. So be sure to bind to the `per-pa
`current-page` and `filter` props on `b-table` to trigger the provider update function call
(unless you have the `no-provider-` respective prop set to `true`).

**Event based refreshing of data:**
#### Event based refreshing of data:
You may also trigger the refresh of the provider function by emitting the
event `table::refresh` on `$oot` with the single argument being the `id` of your `b-table`.
You must have a unique ID on your table for this to work.
Expand All @@ -335,7 +335,7 @@ Or by calling the refresh method on the table reference
These refresh event/methods are only applicable when `items` is a provider function.


**Detection of sorting change:**
#### Detection of sorting change:
By listening on `b-table`'s `sort-changed` event, you can detect when the sorting key and direction have changed.

```html
Expand All @@ -359,5 +359,5 @@ methods: {
### Server Side Rendering
Special care must be taken when using server side rendering (SSR) and an `items` provider
function. Make sure you handle any special situations that may be needed server side
when fetching your data.
when fetching your data!

0 comments on commit ad8dc9a

Please sign in to comment.