简体   繁体   English

在引导程序模式宽度始终为0

[英]In bootstrap modal width is always 0

This is a function in the jqgrid in the load complete. 这是一个在jqgrid中完成加载的功能。

I have a bootstrap modal that is opened by clicking a button. 我有一个通过单击按钮打开的引导程序模式。 In that modal I have a jqgrid. 在这种模式下,我有一个jqgrid。 When I call a function in load complete, in that function, width of appending span is always 0. You can see the function below: 当我在加载完成时调用一个函数时,在该函数中,附加跨度的宽度始终为0。您可以看到以下函数:

function columnresize(id) { 

    $(this).parent().append('<span id="widthTest" />');

    gridName = this.id;

    $('#gbox_' + gridName + ' .ui-jqgrid-htable' + gridName).css('width', 'inherit');
    $('#' + gridName).parent().css('width', 'inherit');

    var columnNames = $("#" + gridName).jqGrid('getGridParam', 'colModel');
    var thisWidth;
    var itmCount = columnNames.length;
    /*var grid = $('#' + gridName);
    var iids = grid.getDataIDs();*/
    // Loop through Cols
    for (var itm = 0; itm < itmCount; itm++) {

    var curObj = $('[aria-describedby=' + gridName + '_' + columnNames[itm].name + ']');

    var thisCell = $('#' + gridName + '_' + columnNames[itm].name + ' div');
    $('#widthTest').html(thisCell.text()).css({
    'font-family': thisCell.css('font-family'),
    'font-size': thisCell.css('font-size'),
    'width': thisCell.css('width'),
    'font-weight': thisCell.css('font-weight')
    });


    var maxWidth = Width = $('#widthTest').width() + 17;
    //var maxWidth = 0;
    var itm2Count = curObj.length;
            // Loop through Rows
            for (var itm2 = 0; itm2 < itm2Count; itm2++) {

            var thisCell = $(curObj[itm2]);

            $('#widthTest').html(thisCell.html()).css({
            'font-family': thisCell.css('font-family'),
            'font-size': thisCell.css('font-size'),
            'font-weight': thisCell.css('font-weight')
            });

            thisWidth = $('#widthTest').width();
            if (thisWidth > maxWidth) {maxWidth = thisWidth+10;}
            }

    $('#' + gridName + ' .jqgfirstrow td:eq(' + itm + '), #' + gridName + '_' + columnNames[itm].name).width(maxWidth).css('min-width', maxWidth+17);
    $('#' + gridName + ' .jqgfirstrow td:eq(' + 0 + '), #' + gridName + '_' + columnNames[0].name).width('30').css('min-width', '30px');
    //grid.setRowData ( iids[itm], false, {height: 30} );

    }
    $('#widthTest').remove();
}

I call the above function in the load complete of jqgrid like this: 我像这样在jqgrid的加载完成中调用以上函数:

loadComplete: function() {
columnresize.call(this, 'Table');
}

The width $('#widthTest').width() in line: 行中的宽度$('#widthTest').width()

var maxWidth = Width = $('#widthTest').width() + 17;

is always 0! 总是0!

Any idea? 任何想法?

after a lot of research I found that because it is a hidden dom element, I have to use this 经过大量研究,我发现由于这是一个隐藏的dom元素,因此我必须使用

jquery to get the actual size of hidden dom element. jQuery获取隐藏的dom元素的实际大小。

Thanks to @Justinas. 感谢@Justinas。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM