easyui datagrid 设置列宽

<script>
        $(document).ready(function () {
            alert("sdf");
            $('#chaxunjieguo').datagrid({
                columns: [[
                    { field: 'code', title: '时间', width: fixWidth(0.2), align: 'center' },
                    { field: 'name', title: '名称', width: fixWidth(0.4), align: 'center' },
                    { field: 'price', title: '附件', width: fixWidth(0.2), align: 'center' }
                ]]
            });
        });
        function fixWidth(percent) {
            return (document.body.clientWidth - 5) * percent;
        }
    </script>

posted @ 2016-09-07 16:30  恋之呓  阅读(2757)  评论(0编辑  收藏  举报