Santoshpalli / jquery-datatables-column-filter

Automatically exported from code.google.com/p/jquery-datatables-column-filter
0 stars 0 forks source link

Problem with adding more than 5 columns #40

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Implement the general data-tables!
2. Problem: Add more than 5 columns.

What is the expected output? What do you see instead?

The expected result should be colored and visible.
In my case it is blank!

What version of the product are you using? On what operating system?

jquery.js
complete.min.js
js/jquery.dataTables.min.js

site_jui.ccss.css
media/css/demo_table_jui.css
media/css/jquery-ui-1.7.2.custom.css

Please provide any additional information below.

Original issue reported on code.google.com by soel.bre...@googlemail.com on 9 Nov 2011 at 1:18

GoogleCodeExporter commented 8 years ago
Okay guys, sorry it was my fault. I forgot to add new lines at the script:

            $(document).ready( function() {
                fnFeaturesInit();
                $('#example').dataTable( {
-->here                 "aaSorting": [[ 5, "desc" ]],
                        "aoColumns": [
                            null,
                            null,
                            null,
                            null,
                            null,
-->here                     null
                        ],
                    "oLanguage": {
                        "sUrl": "media/language/de_DE.txt"
                    },
                    "bJQueryUI": true,
                    "sPaginationType": "full_numbers",
                    "bPaginate": true,
                    "bLengthChange": true,
                    "bFilter": true,
                    "bSort": true,
                    "bInfo": true,
                    "bAutoWidth": true
                } );

Bug is fixed

Original comment by soel.bre...@googlemail.com on 9 Nov 2011 at 1:44

GoogleCodeExporter commented 8 years ago

Original comment by joc...@gmail.com on 12 Feb 2012 at 1:11