We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys , look .
i 'm using Footable with Laravel 7 , where i have a template file .
footable.css inside tag Head
<link href=" {{ asset('css/plugins/footable/footable.bootstrap.css') }} " rel="stylesheet">
footable.min.js on end body
<script src="{{ asset('js/plugins/footable/footable.min.js') }} "></script> .
on my body i have a foreach where a i create my table
<thead> <tr> <th data-hide="phone">Cod</th> <th class="text-right" data-sort-ignore="true">Operation</th> </tr> </thead> <tbody> @foreach ( $some condition ) <tr> <td> {{$some->id}} </td> <td class='text-right'> <div class='btn-group operations'> <button class='btn-white btn btn-xs' data-action='4'><i class='fas fa-undo-alt' aria-hidden='true'></i></button> </div> </td> </tr> @endforeach </tbody> <tfoot> <tr> <td colspan="6"> <ul class="pagination float-right"></ul> </td> </tr> </tfoot>
on my Jquery inside document.ready :
$('.footable').footable(); $('.operations').on('click','button',function() { console.log('fired'); });
but only fired when i am first page or only first 10 results rows.
for example , if a i have 11 rows , pagination with 10 rows per page.
so i 'll have 2 pages , page 1 with 10 rows and page 2 with 1 row , if a click on 11 row the event dont fired .
someone know what could cause this issue ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi guys , look .
i 'm using Footable with Laravel 7 , where i have a template file .
footable.css inside tag Head
<link href=" {{ asset('css/plugins/footable/footable.bootstrap.css') }} " rel="stylesheet">
footable.min.js on end body
<script src="{{ asset('js/plugins/footable/footable.min.js') }} "></script> .
on my body i have a foreach where a i create my table
on my Jquery inside document.ready :
but only fired when i am first page or only first 10 results rows.
for example , if a i have 11 rows , pagination with 10 rows per page.
so i 'll have 2 pages , page 1 with 10 rows and page 2 with 1 row , if a click on 11 row the event dont fired .
someone know what could cause this issue ?
The text was updated successfully, but these errors were encountered: