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.
Copy file name to clipboardExpand all lines: demo/src/assets/docs/faq.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
#####Error encountered resolving symbol values statically.
1
+
>Error encountered resolving symbol values statically.
2
2
3
3
Please update your `tsconfig.json` as shown below. For more info, check the GitHub issue [here](https://github.com/l-lin/angular-datatables/issues/937)
4
4
@@ -15,7 +15,7 @@ Please update your `tsconfig.json` as shown below. For more info, check the GitH
15
15
}
16
16
```
17
17
18
-
#####Columns do not resize when using ColReorder extension
18
+
>Columns do not resize when using ColReorder extension
19
19
20
20
Grab a copy of [this](https://github.com/shanmukhateja/adt-resize-col-demo) project, update it to suit your needs and see if it works.
21
21
If it won't work, check these similar issues:
@@ -24,21 +24,21 @@ If it won't work, check these similar issues:
24
24
25
25
If it still didn't work, open a GitHub [issue](https://github.com/l-lin/angular-datatables/issues/new) and we'll look into it.
26
26
27
-
#####Column data doesn't move with column header when re-ordering
27
+
>Column data doesn't move with column header when re-ordering
28
28
29
29
It could be many things but in general it could be because you're using "Angular way" to display data. In this case, look at the suggested changes on this [comment](https://github.com/l-lin/angular-datatables/issues/1496#issuecomment-764692564)
30
30
31
-
#####'Warning: Unable to fully load <project> for sourcemap flattening; ENOENT: no such file or directory* '
31
+
>'Warning: Unable to fully load <project> for sourcemap flattening; ENOENT: no such file or directory* '
32
32
33
33
This has been fixed in newer version of `angular-datatables`. You can find latest releases for your project's Angular version on [Releases](https://github.com/l-lin/angular-datatables/releases) page.
34
34
35
-
#####'DataTables warning: table id=xx - Cannot reinitialise DataTable. For more information about this error, please see http://datatables.net/tn/3*'
35
+
>'DataTables warning: table id=xx - Cannot reinitialise DataTable. For more information about this error, please see http://datatables.net/tn/3*'
36
36
37
37
This error occurs when you're trying to change `dtOptions` on a table which has been previously initialised by DataTables.
38
38
If you're using a shared table component, just call `destroy()` method on `ngOnDestroy` of the component.
39
39
If you're using DataTables v1.10.4 or later, you can add `destroy: true` to `dtOptions` when initialising the table to let the table be destroyed automatically when new changes arrive.
40
40
41
-
#####'DataTables warning (table id = x): Requested unknown parameter y from the data source for row z*http://datatables.net/tn/4' or similar
41
+
>'DataTables warning (table id = x): Requested unknown parameter y from the data source for row z*http://datatables.net/tn/4' or similar
42
42
43
43
This usually occurs when your `dtOptions` are configured incorrectly. Make sure your AJAX response matches to our AJAX example [here](http://localhost:4200/#/basic/with-ajax).
44
44
We highly recommend checking out DataTables.net [documentation](https://datatables.net/manual/tech-notes/4) on this issue for more troubleshooting information.
0 commit comments