GridView列宽 - 如何停止"收缩适合"行为

jme*_*te1 3 javascript css gridview width

我目前正在尝试使用冻结标头实现GridView.我已经使用在线找到的javascript冻结了标题.这是代码:

    var GridId = "<%=dgContacts.ClientID %>";
    var ScrollHeight = 180;
    var ScrollWidth = 700;
    window.onload = function () {
        enablePostLog();
        var grid = document.getElementById(GridId);
        var gridWidth = grid.offsetWidth;
        var headerCellWidths = new Array();
        for (var i = 0; i < grid.getElementsByTagName("TH").length; i++) {
            headerCellWidths[i] = grid.getElementsByTagName("TH")[i].offsetWidth;
        }
        grid.parentNode.appendChild(document.createElement("div"));
        var parentDiv = grid.parentNode;

        var table = document.createElement("table");
        for (i = 0; i < grid.attributes.length; i++) {
            if (grid.attributes[i].specified && grid.attributes[i].name != "id") {
                table.setAttribute(grid.attributes[i].name, grid.attributes[i].value);
            }
        }
        table.style.cssText = grid.style.cssText;
        table.style.width = gridWidth + "px";
        table.style.tableLayout = "fixed";
        table.appendChild(document.createElement("tbody"));
        table.getElementsByTagName("tbody")[0].appendChild(grid.getElementsByTagName("TR")[0]);
        var headerRow = table.getElementsByTagName("TH");

        var gridRow = grid.getElementsByTagName("TR")[0];
        for (var i = 0; i < headerRow.length; i++) {
            var width;
            if (headerCellWidths[i] > gridRow.getElementsByTagName("TD")[i].offsetWidth) {
                width = headerCellWidths[i];
            }
            else {
                width = gridRow.getElementsByTagName("TD")[i].offsetWidth;
            }
            headerRow[i].style.width = parseInt(width - 3) + "px";
            gridRow.getElementsByTagName("TD")[i].style.width = parseInt(width - 3) + "px";
        }
        parentDiv.removeChild(grid);

        var dummyHeader = document.createElement("div");
        dummyHeader.setAttribute('id', 'divHeader');
        dummyHeader.style.cssText = "margin-left: auto; margin-right: auto; overflow: hidden; width: " + ScrollWidth + "px";
        dummyHeader.appendChild(table);
        parentDiv.appendChild(dummyHeader);
        var scrollableDiv = document.createElement("div");
        gridWidth = parseInt(gridWidth) + 17;
        scrollableDiv.setAttribute('id', 'divBody');
        scrollableDiv.style.cssText = "margin-left: auto; margin-right: auto; overflow: auto; height: " + ScrollHeight + "px; width: " + ScrollWidth + "px";
        scrollableDiv.appendChild(grid);
        scrollableDiv.onscroll = scrollHeader;
        parentDiv.appendChild(scrollableDiv);
    }

    function scrollHeader() {
        var header = document.getElementById('divHeader');
        var body = document.getElementById('divBody');
        header.scrollLeft = body.scrollLeft;
    }
Run Code Online (Sandbox Code Playgroud)

我遇到的问题是GridView处于固定宽度的div中.添加到列的宽度样式将被忽略.

最终的HTML如下所示:http: //i.stack.imgur.com/xDzez.png

呈现的实际表格看起来像这样(问题在"视图"和"通知"列中最为明显):http: //i.stack.imgur.com/rA35z.png

如果我删除外部div上的固定宽度,列宽会自行纠正,但很明显,我失去了可滚动性.它似乎试图缩小表格单元格中的空白以尝试适合div.这不是必要的,因为overflow: auto外部div.我可以添加一种样式或其他东西来阻止浏览器这样做吗?

jme*_*te1 6

结果我需要table-layout: fixedwidth: 100%两个表格.我曾尝试过表格布局解决方案,但没有意识到宽度需要100%.

最终的javascript:

    var GridId = "<%=dgContacts.ClientID %>";
    var ScrollHeight = 180;
    var ScrollWidth = 700;
    window.onload = function () {
        enablePostLog();


        var grid = document.getElementById(GridId);
        var gridWidth = grid.offsetWidth;
        var headerCellWidths = new Array();
        for (var i = 0; i < grid.getElementsByTagName("TH").length; i++) {
            headerCellWidths[i] = grid.getElementsByTagName("TH")[i].offsetWidth;
        }
        grid.parentNode.appendChild(document.createElement("div"));
        var parentDiv = grid.parentNode;

        var table = document.createElement("table");
        for (i = 0; i < grid.attributes.length; i++) {
            if (grid.attributes[i].specified && grid.attributes[i].name != "id") {
                table.setAttribute(grid.attributes[i].name, grid.attributes[i].value);
            }
        }
        table.style.cssText = grid.style.cssText;
        table.appendChild(document.createElement("tbody"));
        table.getElementsByTagName("tbody")[0].appendChild(grid.getElementsByTagName("TR")[0]);
        var headerRow = table.getElementsByTagName("TH");

        var gridRow = grid.getElementsByTagName("TR")[0];
        for (var i = 0; i < headerRow.length; i++) {
            var width;
            if (headerCellWidths[i] > gridRow.getElementsByTagName("TD")[i].offsetWidth) {
                width = headerCellWidths[i];
            }
            else {
                width = gridRow.getElementsByTagName("TD")[i].offsetWidth;
            }
            gridRow.getElementsByTagName("TD")[i].style.width = parseInt(width - 3) + "px";
            if (i == headerRow.length - 1) {
                width = width + getScrollBarWidth();
            }
            headerRow[i].style.width = parseInt(width - 3) + "px";
        }
        parentDiv.removeChild(grid);
        grid.style.tableLayout = "fixed";
        table.style.tableLayout = "fixed";
        grid.style.width = "100%";
        table.style.width = "100%";
        var dummyHeader = document.createElement("div");
        dummyHeader.setAttribute('id', 'divHeader');
        dummyHeader.style.cssText = "margin-left: auto; margin-right: auto; overflow: hidden; width: " + ScrollWidth + "px";
        dummyHeader.appendChild(table);
        parentDiv.appendChild(dummyHeader);
        var scrollableDiv = document.createElement("div");
        scrollableDiv.setAttribute('id', 'divBody');
        scrollableDiv.style.cssText = "margin-left: auto; margin-right: auto; overflow: auto; height: " + ScrollHeight + "px; width: " + ScrollWidth + "px";
        scrollableDiv.appendChild(grid);
        scrollableDiv.onscroll = scrollHeader;
        parentDiv.appendChild(scrollableDiv);
    }

    function scrollHeader() {
        var header = document.getElementById('divHeader');
        var body = document.getElementById('divBody');
        header.scrollLeft = body.scrollLeft;
    }

    function getScrollBarWidth() {
        var inner = document.createElement('p');
        inner.style.width = "100%";
        inner.style.height = "200px";

        var outer = document.createElement('div');
        outer.style.position = "absolute";
        outer.style.top = "0px";
        outer.style.left = "0px";
        outer.style.visibility = "hidden";
        outer.style.width = "200px";
        outer.style.height = "150px";
        outer.style.overflow = "hidden";
        outer.appendChild(inner);

        document.body.appendChild(outer);
        var w1 = inner.offsetWidth;
        outer.style.overflow = 'scroll';
        var w2 = inner.offsetWidth;
        if (w1 == w2) w2 = outer.clientWidth;

        document.body.removeChild(outer);

        return (w1 - w2);
    }
Run Code Online (Sandbox Code Playgroud)