Added spinner icon to loading message
This commit is contained in:
parent
729b709de2
commit
cddd3cdb81
1 changed files with 4 additions and 0 deletions
|
@ -27,6 +27,7 @@ $('.snipe-table').bootstrapTable({
|
||||||
@if (isset($multiSort))
|
@if (isset($multiSort))
|
||||||
showMultiSort: true,
|
showMultiSort: true,
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
showExport: true,
|
showExport: true,
|
||||||
showColumns: true,
|
showColumns: true,
|
||||||
trimOnSearch: false,
|
trimOnSearch: false,
|
||||||
|
@ -41,6 +42,9 @@ $('.snipe-table').bootstrapTable({
|
||||||
paginationLastText: "{{ trans('general.last') }}",
|
paginationLastText: "{{ trans('general.last') }}",
|
||||||
paginationPreText: "{{ trans('general.previous') }}",
|
paginationPreText: "{{ trans('general.previous') }}",
|
||||||
paginationNextText: "{{ trans('general.next') }}",
|
paginationNextText: "{{ trans('general.next') }}",
|
||||||
|
formatLoadingMessage: function () {
|
||||||
|
return '<h4><i class="fa fa-spinner fa-spin" aria-hidden="true"></i> Loading... please wait.... </h4>';
|
||||||
|
},
|
||||||
pageList: ['10','25','50','100','150','200','500','1000'],
|
pageList: ['10','25','50','100','150','200','500','1000'],
|
||||||
icons: {
|
icons: {
|
||||||
paginationSwitchDown: 'fa-caret-square-o-down',
|
paginationSwitchDown: 'fa-caret-square-o-down',
|
||||||
|
|
Loading…
Add table
Reference in a new issue