You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2025. It is now read-only.
I had this working prior to upgrading to Angular 14 and angular-datatables 14. Post upgrade, [dtTrigger] requires a Subject passed to it and that Subject's next method must pass an ADTSettings type object. As far as I can tell, ADTSettings is an interface that extends the Settings object, but I haven't a clue how this is suppose to be used.
I expected the documentation to guide the process for utilizing the package. Unfortunately, it looks like major breaking changes happened with the latest version and there is a lack of documentation on how to implement any of it.
📷 Screenshots
🌐 Your Environment
NodeJS version: 16.13
Angular version: 14.2.9
Angular CLI version: 14.2.10
jQuery version: 3.6.1
DataTables version: Whatever comes with running ng add angular-datatables.
angular-datatables version: 14
📝 Additional context
A couple notes for the documentation to be corrected.
dtElement: DataTableDirective; is not valid syntax in Angular 14, it must be dtElement!: DataTableDirective;
rxjs requires a value be passed on any Subject's next method now.