ashl1 / datatables-rowsgroup

The Datatables feature plugin that groups rows (merge cells vertically) in according to specified columns.
Other
95 stars 94 forks source link

Uncaught TypeError: Cannot set property 'RowsGroup' of undefined #16

Open johanmos opened 7 years ago

johanmos commented 7 years ago

I ran your example, but I got this error!

Uncaught TypeError: Cannot set property 'RowsGroup' of undefined

rajavijayach commented 6 years ago

Can you share a fiddle link?

rassemdev commented 4 years ago

Having same error.

arnxv0 commented 3 years ago

This is probably because you are loading the scripts in the wrong order.

Adding them in this order solved it for me :

` <script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.10.12/datatables.min.js"

`

<link rel="stylesheet" href="https://cdn.datatables.net/v/dt/dt-1.10.12/datatables.min.css" />

` <script type="text/javascript" src="https://cdn.rawgit.com/ashl1/datatables-rowsgroup/fbd569b8768155c7a9a62568e66a64115887d7d0/dataTables.rowsGroup.js"

`