Thisara Subath
Thisara Subath

Reputation: 743

Left fixed columns with table colspan

I have used this .js files and following method.

https://code.jquery.com/jquery-3.3.1.js https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js https://cdn.datatables.net/fixedcolumns/3.2.6/js/dataTables.fixedColumns.min.js

var table = $("#ShowDetails").DataTable({
                    scrollX: true,
                    scrollCollapse: true,
                    paging: false,
                    fixedColumns: {
                    leftColumns: 1,}
                });

But it is not working properly , i need to know how to do table structure like this.

enter image description here

high lighted should be freeze

Upvotes: 3

Views: 1181

Answers (1)

Oshada Ekanayake
Oshada Ekanayake

Reputation: 360

Try this example http://www.cubicfactory.com/jseditor/welcome/137556/edit Make sure you have included all js libraries in this example

Upvotes: 3

Related Questions