Using DataTable in Adaptive Forms | Community
Skip to main content
Level 4
August 9, 2022
Solved

Using DataTable in Adaptive Forms

  • August 9, 2022
  • 1 reply
  • 1632 views

Hello,

 

I came across the following post on how to use DataTables in AEM. 

Datatables in Adaptive Forms – Forms.life

 

Unfortunately, the link to the full example package is no longer working. When downloading DataTables, how do you include it into AEM and create a client library from it? Thank you

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Mayank_Gandhi

@techddx create a client lib, now create a  file with name 'datatable.js' and place the minified js in it copied from cdn[below] and similarly do for CSS.

 

Now include this client lib as part of the guide root container by mapping category.

 

https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js

https://cdn.datatables.net/1.12.1/css/jquery.dataTables.min.css

1 reply

Mayank_Gandhi
Adobe Employee
Mayank_GandhiAdobe EmployeeAccepted solution
Adobe Employee
August 9, 2022

@techddx create a client lib, now create a  file with name 'datatable.js' and place the minified js in it copied from cdn[below] and similarly do for CSS.

 

Now include this client lib as part of the guide root container by mapping category.

 

https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js

https://cdn.datatables.net/1.12.1/css/jquery.dataTables.min.css

techddxAuthor
Level 4
August 9, 2022

Thank you for the quick response. I will try this.

Level 4
August 10, 2022

Thanks for pointing this one out, it's a useful solution. I will try it too.