Skip to content
New issue

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

fix: ensure DataTables initialization after the page fully loads #235

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

achetibi
Copy link

Ensure DataTables initialization after the page fully loads by adding load event listener.

@yajra
Copy link
Owner

yajra commented Mar 31, 2025

Can you please provide snippets that the PR fixes? And thanks for the contribution.

@achetibi
Copy link
Author

achetibi commented Mar 31, 2025

To reproduce the issue, we will use the Quick Starter available on the site https://yajrabox.com/docs/laravel-datatables/12.0/quick-starter.

In the view resources/views/users/index.blade.php we need to add the following:

{{ $dataTable->scripts() }} intead of {{ $dataTable->scripts(attributes: ['type' => 'module']) }}

In the console, we will encounter an error: Uncaught ReferenceError: $ is not defined

To resolve this, there are several options:

  • Use the AppServiceProvider to instruct the builder to use Vite: Builder::useVite();
  • Add the attribute ['type' => 'module'] to the script: {{ $dataTable->scripts(attributes: ['type' => 'module']) }}

My approach is to ensure that the page is fully loaded before executing the DataTable script. This can help avoid the two previous options.

Edit:
Probably we need to do the same thing with the other script files (editor.blade.php, function.blade.php and scout.blade.php)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants