Lint fix
parent
072d3eb9be
commit
7fdab4f885
|
@ -1616,7 +1616,7 @@ export default {
|
||||||
sortOrder: this.d_sortOrder,
|
sortOrder: this.d_sortOrder,
|
||||||
multiSortMeta: this.d_multiSortMeta,
|
multiSortMeta: this.d_multiSortMeta,
|
||||||
filters: this.filters,
|
filters: this.filters,
|
||||||
filterMatchModes: filterMatchModes
|
filterMatchModes: filterMatchModes
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -713,7 +713,7 @@ export default {
|
||||||
assuming there are actually records of totalRecords size although in reality they aren't as in lazy mode, only the records that are displayed on the current page exist.</p>
|
assuming there are actually records of totalRecords size although in reality they aren't as in lazy mode, only the records that are displayed on the current page exist.</p>
|
||||||
|
|
||||||
<p>Lazy loading is implemented by handling pagination and sorting using <i>page</i> and <i>sort</i> events by making a remote query using the information
|
<p>Lazy loading is implemented by handling pagination and sorting using <i>page</i> and <i>sort</i> events by making a remote query using the information
|
||||||
passed to the events such as first offset, number of rows and sort field for ordering. Filtering is handled differently as filter elements are defined using templates. <i>filter</i> event is not triggered in
|
passed to the events such as first offset, number of rows and sort field for ordering. Filtering is handled differently as filter elements are defined using templates. <i>filter</i> event is not triggered in
|
||||||
lazy mode instead use the event you prefer on your form elements such as input, change, blur to make a remote call by passing the filters property to update the displayed data. Note that,
|
lazy mode instead use the event you prefer on your form elements such as input, change, blur to make a remote call by passing the filters property to update the displayed data. Note that,
|
||||||
in lazy filtering, totalRecords should also be updated to align the data with the paginator.</p>
|
in lazy filtering, totalRecords should also be updated to align the data with the paginator.</p>
|
||||||
|
|
||||||
|
@ -1979,7 +1979,7 @@ export default {
|
||||||
event.sortOrder: Sort order as integer <br />
|
event.sortOrder: Sort order as integer <br />
|
||||||
event.multiSortMeta: MultiSort metadata <br />
|
event.multiSortMeta: MultiSort metadata <br />
|
||||||
event.filters: Collection of active filters <br />
|
event.filters: Collection of active filters <br />
|
||||||
event.filterMatchModes: Match modes per field
|
event.filterMatchModes: Match modes per field
|
||||||
</td>
|
</td>
|
||||||
<td>Callback to invoke on pagination. Sort and Filter information is also available for lazy loading implementation.</td>
|
<td>Callback to invoke on pagination. Sort and Filter information is also available for lazy loading implementation.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -1992,7 +1992,7 @@ export default {
|
||||||
event.sortOrder: Sort order as integer <br />
|
event.sortOrder: Sort order as integer <br />
|
||||||
event.multiSortMeta: MultiSort metadata <br />
|
event.multiSortMeta: MultiSort metadata <br />
|
||||||
event.filters: Collection of active filters <br />
|
event.filters: Collection of active filters <br />
|
||||||
event.filterMatchModes: Match modes per field
|
event.filterMatchModes: Match modes per field
|
||||||
</td>
|
</td>
|
||||||
<td>Callback to invoke on sort. Page and Filter information is also available for lazy loading implementation.</td>
|
<td>Callback to invoke on sort. Page and Filter information is also available for lazy loading implementation.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -2006,7 +2006,7 @@ export default {
|
||||||
event.multiSortMeta: MultiSort metadata <br />
|
event.multiSortMeta: MultiSort metadata <br />
|
||||||
event.filters: Collection of active filters <br />
|
event.filters: Collection of active filters <br />
|
||||||
event.filteredValue: Filtered collection <br />
|
event.filteredValue: Filtered collection <br />
|
||||||
event.filterMatchModes: Match modes per field
|
event.filterMatchModes: Match modes per field
|
||||||
</td>
|
</td>
|
||||||
<td>Event to emit after filtering, not triggered in lazy mode.</td>
|
<td>Event to emit after filtering, not triggered in lazy mode.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue