jQuery Datatables Header Misaligned With Vertical Scrolling

前端 未结 20 2329
北海茫月
北海茫月 2020-12-15 05:05

I\'ve posted this in the datatables.net forums, but after a week, still no response. Hopefully I can find help here...

I\'m using datatables version 1.8.1 and am ha

相关标签:
20条回答
  • 2020-12-15 05:06

    Not sure if I had the exact same problem. I was dealing with a very large table, 40+ columns, and was using horizontal and vertical scrolling. However, if the browser window was set so big that you could see the whole table, the column headings were left aligned and the table content was in the center.

    I noticed in firebug that the table had gotten a width of 1352px through DataTables. Setting that to 100% made everything line up!

    0 讨论(0)
  • 2020-12-15 05:07
    if ( $.browser.webkit ) {
        setTimeout( function () {
            oTable.fnAdjustColumnSizing();
        }, 10 );
    }
    

    Worked perfect for me!

    0 讨论(0)
  • 2020-12-15 05:07

    JS

    $('#<%=gridname.ClientID%>').dataTable( {                   
    
               "paging":         false
                });        
    
            });
    

    Then above your gridview add a div element as below.

      <div style ="height:600px; overflow:auto;"> 
      <asp:GridView ID="id" runat="server" DataKeyNames="key" ClientIDMode="Static" HeaderStyle-BackColor="#99ccff"
            BorderStyle="Inset" BorderWidth="1px" CellPadding="4" HorizontalAlign="Center" AutoGenerateColumns="false" Width="98%"  >
    etc..
    </div>
    
    0 讨论(0)
  • 2020-12-15 05:10

    I had a similar issue, but mine resizes to fit after searching or sorting or interacting with the table in a way to cause a redraw, tried the redraw...function but no luck had to improvise in the end. The funny fix I that worked for me was calling oTable.fnFilter( "x",0 ) and oTable.fnFilter( "",0 ) in this same order (search and clear search)... this works...lol.. :)

    0 讨论(0)
  • 2020-12-15 05:10

    This is how I have got rid of this problem:

    I use this generally to execute functions after a Ajax call has been completed

        WaAjaxHelper = {
        arr_execute_after_ajax: null,
        add_function_to_execute_after_ajax: function (fun) {
    
            if (typeof fun == 'function') {
                if (!this.arr_execute_after_ajax) {
                    this.arr_execute_after_ajax = [];
                }
                this.arr_execute_after_ajax.push(fun)
                return true;
            } else {
                alert('ERROR: WaAjaxHelper.add_function_to_execute_after_ajax only functions possible');
                return false;
            }
        },
        execute_after_ajax: function () {
            if (this.arr_execute_after_ajax) {
                $.each(this.arr_execute_after_ajax, function (index, value) {
                    try {
                        value();
    
                    } catch (e) {
                        console.log(e);
                    }
                })
            }
            this.arr_execute_after_ajax = null;
        }
    }
    
    
    $(document).ready(function () {
        $.ajaxSetup({
            async: true,
            beforeSend: function (xhr) {
                xhr.setRequestHeader("Accept", "text/javascript");
                $('.blockUI').css('cursor', 'progress');
            },
            complete: function (jqXHR, textStatus) {
                $('body').removeClass('waiting');
            },
            error: function (jqXHR, textStatus, errThrown) {
                alert("Ajax request failed with error: " + errThrown);
                ajax_stop();
            }
        });
        $(document).ajaxStart(ajax_start).ajaxStop(ajax_stop);
    });
    
    
    ajax_start = function () {
        // do something here
    }
    ajax_stop = function () {
       WaAjaxHelper.execute_after_ajax();
    }
    

    in the view:

      var tbl;
      WaAjaxHelper.add_function_to_execute_after_ajax(function (){tbl.fnDraw()})
    

    where tbl stores the datatable object.

    0 讨论(0)
  • 2020-12-15 05:12

    I solved this problem by wrapping the "dataTable" Table with a div with overflow:auto

    .dataTables_scroll
    {
        overflow:auto;
    }
    

    and add this JS after your dataTable initialization

    jQuery('.dataTable').wrap('<div class="dataTables_scroll" />');
    

    Dont use sScrollX or sScrollY, remove then and add a div wrapper yourself which does the same thing.

    0 讨论(0)
提交回复
热议问题