Skip to content

Commit

Permalink
more documentation for doEmit flag - resolves #105
Browse files Browse the repository at this point in the history
  • Loading branch information
uap-universe authored and Mike Becker committed Oct 27, 2022
1 parent d94fdce commit e269613
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This document lists the changes introduced by this fork.

* Revert commit baffdd5591761e967957ad71cbe22a4196b32615 because of
an incorrect implementation of `count()` in the `ServerDataSource`
* Adds more documentation for the `doEmit` flag of various methods.

## Version 2.6.0

Expand Down
1 change: 1 addition & 0 deletions projects/angular2-smart-table/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This document lists the changes introduced by this fork.

* Revert commit baffdd5591761e967957ad71cbe22a4196b32615 because of
an incorrect implementation of `count()` in the `ServerDataSource`
* Adds more documentation for the `doEmit` flag of various methods.

## Version 2.6.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,9 @@ <h3>Data Source Methods</h3>
</ul>
</li>
<li>
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true.
Set this to false if you want to prepare a configuration without refreshing the table
(e.g. to avoid a HTTP request from a ServerDataSource).
</li>
</ul>
</td>
Expand All @@ -1115,7 +1117,9 @@ <h3>Data Source Methods</h3>
</ul>
</li>
<li>
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true.
Set this to false if you want to prepare a configuration without refreshing the table
(e.g. to avoid a HTTP request from a ServerDataSource).
</li>
</ul>
</td>
Expand Down Expand Up @@ -1149,7 +1153,9 @@ <h3>Data Source Methods</h3>
andOperator: <span class="highlight">boolean</span> - how to process multiple filters (as AND or as OR), default = true (AND)
</li>
<li>
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true.
Set this to false if you want to prepare a configuration without refreshing the table
(e.g. to avoid a HTTP request from a ServerDataSource).
</li>
</ul>
</td>
Expand All @@ -1174,7 +1180,9 @@ <h3>Data Source Methods</h3>
andOperator: <span class="highlight">boolean</span> - how to process multiple filters (as AND or as OR), default = true (AND)
</li>
<li>
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true.
Set this to false if you want to prepare a configuration without refreshing the table
(e.g. to avoid a HTTP request from a ServerDataSource).
</li>
</ul>
</td>
Expand Down Expand Up @@ -1207,7 +1215,9 @@ <h3>Data Source Methods</h3>
perPage: <span class="highlight">number</span> - about per page
</li>
<li>
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true.
Set this to false if you want to prepare a configuration without refreshing the table
(e.g. to avoid a HTTP request from a ServerDataSource).
</li>
</ul>
</td>
Expand All @@ -1223,7 +1233,9 @@ <h3>Data Source Methods</h3>
page: <span class="highlight">number</span> - page number
</li>
<li>
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true
doEmit: <span class="highlight">boolean</span> - emit event (to refresh the table) or not, default = true.
Set this to false if you want to prepare a configuration without refreshing the table
(e.g. to avoid a HTTP request from a ServerDataSource).
</li>
</ul>
</td>
Expand Down

0 comments on commit e269613

Please sign in to comment.