我设法提出了一个代码,可以使flexigrid更“流畅”,更具体地说它可以根据页面加载时的窗口大小调整大小,但是现在我想添加函数来自动调整大小时的大小窗口改变而不刷新它。
这是我到目前为止所做的:
$(document).ready(function(){
var myWidth;
var myHeight;
var rowno;
if($(window).resize(function(e) {
// do something when window resizes
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
var rowno = Math.floor((myHeight - 96)/29)
}));
$("#flex1").flexigrid
(
{
url: 'post2.php',
dataType: 'json',
colModel : [
{display: 'ID', name : 'id', width : (myWidth*0.018), sortable : true, align: 'center', hide: false},
{display: 'URL', name : 'url', width : (myWidth*0.38), sortable : false, align: 'left'},
{display: 'File Name', name : 'filename', width : (myWidth*0.239), sortable : true, align: 'left'},
{display: 'Availability', name : 'availability', width : (myWidth*0.038), sortable : true, align: 'center'},
{display: 'State', name : 'state', width : (myWidth*0.029), sortable : true, align: 'center'},
{display: 'Total Size', name : 'totalsize', width : (myWidth*0.05), sortable : false, align: 'center'},
{display: 'Current Size', name : 'currentsize', width : (myWidth*0.05), sortable : false, align: 'center'},
{display: 'Procent', name : 'procent', width : (myWidth*0.04), sortable : true, align: 'center'},
{display: 'Log', width : (myWidth*0.018), sortable : false, align: 'center'},
],
buttons : [
{name: 'Add', bclass: 'add', onpress : test},
{name: 'Delete', bclass: 'delete', onpress : test},
{separator: true},
{name: 'Start', bclass: 'start', onpress : test},
{name: 'Stop', bclass: 'stop', onpress : test},
{separator: true},
{name: 'Select All', bclass : 'selectall', onpress : test},
{name: 'DeSelect All', bclass : 'deselectall', onpress : test},
{separator: true}
],
searchitems : [
{display: 'URL', name : 'url'},
{display: 'Filename', name : 'filename', isdefault: true}
],
sortname: "id",
sortorder: "asc",
usepager: true,
title: '',
useRp: false,
rp: rowno,
showTableToggleBtn: true,
height: (myHeight - 96)
}
);
});
现在它在jquery中引发了一个关于无效参数的错误,但我很确定是语法问题。
谢谢,
的Cristian。
答案 0 :(得分:1)
如果你看到任何元素的高度大小,你将它加在一起120px aprox。 所以,如果你做这样的事情(flexigrid配置对象属性),你会没事的:
$("#tabla").flexigrid({
...,
width:'auto',
height:$("#container").innerHeight()-120
});
答案 1 :(得分:0)
更好地使用%来代替px或em 如果没有这么大的脚本,它可以正常工作
** 修改 **
如果你还想做一个settimeout函数,它将每隔1秒检查一次浏览器window.height和width的大小window.width:)
如果你成功了,我是第一个复制你的脚本我正在寻找同样的东西。 。但习惯了%