zoukankan      html  css  js  c++  java
  • easyui datagrid-detailview 嵌套高度自适应

    实现效果


    原因

    异步加载,明细展开时,可能会遇到父列表不能自动适应子列表高度的变化

    具体代码

    $('#centerdatagrid').datagrid({
        	url:'${ctx}/offer/offer!projectPage.htm',
            title: '项目列表',
            iconCls:'iconfont icon-iconlist',
            toolbar: '#toolbar',
            border: false,
            fit: true,
            singleSelect: true,
            striped : true,
            toolbar: '#toolbar',
            pagination: true,
            pageSize: 20,
            rownumbers: true,
            fitColumns: false,
            autoRowHeight:true,
            columns: [
    		[	
    		 	{field: 'name', title: '项目名称'},
    		 	{field: 'projectTreeName', title: '项目分类'},
    		 	{field: 'customer', title: '客户'},
    		 	{field: 'salesperson', title: '销售员'},
    		 	{field: 'bidder', title: '报价人'},
    		 	{field: 'offerTime', title: '时间'},
    		 	{field: 'description', title: '备注'},
    		 	{field: 'operate', title: '操作',
    		 		formatter: function(value,row,index){
    		 			var html = '<a onclick="toList('+row.projectId+')" href="javascript:void(0);">【添加子项目】</a>';
    		 			html = html + '<a onclick="toList('+row.projectId+')" href="javascript:void(0);">【查看报价清单】</a>';
    		 			return html;
    				}
    		 	}
    		]
            ],
            onBeforeLoad:function(){},
            onLoadSuccess:function(){},
            view: detailview,
            detailFormatter:function(index,row){
                return '<div style="padding:2px"><table class="ddv"></table></div>';
            },
            onExpandRow: function(index,row){
                var ddv = $(this).datagrid('getRowDetail',index).find('table.ddv');
                ddv.datagrid({
                	url:'${ctx}/offer/offer!projectPage.htm',
                	fitColumns:true,
                    singleSelect:true,
                    loadMsg:'',
                    //height:'auto',
                    autoRowHeight:true,
                    pagination: true,
                    pageSize: 20,
                    columns: [
            		[	
            		 	{field: 'name', title: '项目名称'},
            		 	{field: 'projectTreeName', title: '项目分类'},
            		 	{field: 'customer', title: '客户'},
            		 	{field: 'salesperson', title: '销售员'},
            		 	{field: 'bidder', title: '报价人'},
            		 	{field: 'offerTime', title: '时间'},
            		 	{field: 'description', title: '备注'}
            		]
                    ],
                    onResize:function(){                    
                        $('#centerdatagrid').datagrid('fixDetailRowHeight',index);                                      
    	            },
    	            onLoadSuccess:function(){
    	                setTimeout(function(){
    	                    $('#centerdatagrid').datagrid('fixDetailRowHeight',index);//在加载爷爷列表明细(即:父列表)成功时,获取此时整个列表的高度,使其适应变化后的高度,此时的索引
    	                    $('#centerdatagrid').datagrid('fixRowHeight',index);//防止出现滑动条
    	                },0);
    	            }
                });
                $('#centerdatagrid').datagrid('fixDetailRowHeight',index);
            }
        });


  • 相关阅读:
    mysql 常用命令
    MAC 升级到10.10(OS X Yosemite)下apache+php的配置问题
    php 第1讲 html介绍 html运行原理①
    php 开山篇
    Sublime Text 2
    java 抽象类和接口整理
    petri 网理论与研究(第一节140915)
    程序员应该读的书
    python logging模块小记
    常见设计模式,单例模式(双重检测锁方式)示例
  • 原文地址:https://www.cnblogs.com/caohaifeng/p/5550725.html
Copyright © 2011-2022 走看看