首页 新闻 会员 周边

easy ui DataGrid 垂直滚动条在谷歌浏览器可以 但是ie却没法滚动

0
[已关闭问题] 关闭于 2014-11-13 14:28

easy ui  DataGrid  垂直滚动条在谷歌浏览器可以 但是ie却没法滚动    是不是要设置什么属性

程序员编程日记的主页 程序员编程日记 | 初学一级 | 园豆:6
提问于:2014-11-10 19:27
< >
分享
所有回答(3)
0

Bridal Dilemma: How Do I Choose the Wedding Gown That?s Right for Me?
Every bride wants to look beautiful on her wedding day. After all, all eyes will be on her. That?s why this question never fails to make any bride-to-be quiver and feel a little bit anxious when they?re asked: 

?What are you going to wear on your wedding?? 
wedding dress,bridal gowns,discount wedding dress,discount wedding dresses,wedding dresses with color,wedding dresses with sleeves
bridesmaid dress ,2010 wedding dresses ,gloves,new wedding dresses,tea length bridesmaid dresses ,tea length bridesmaid gowns 
prom dress,flower girl dress,wholesale wedding dresses,plus size wedding dresses,mother of bride dresses
More often than not, she hasn?t really decided on the wedding gown yet. Understandably so?since most newly engaged women are still reeling from the romance of being swept up her feet and proposed to by the man of her dreams. 

However, as soon as she gets her feet back on the ground and starts thinking about the wedding plans, the bride-to-be starts wondering and thinking seriously about what she?s going to wear. 

Choosing the perfect wedding gown is no easy task ? every gown is beautiful and perfect. As the bride, how do you decide which style of wedding gown you?ll look best in? Here are 5 ways to make it easier for you. 

wedding | 园豆:208 (菜鸟二级) | 2014-11-11 12:08
0

$('#grid').datagrid({ //定位到Table标签,Table标签的ID是grid
// UserInfo是控制器,GetAllUserInfos是控制器中获取用户数据的一个Action
url: '/UserInfo/GetAllUserInfos', //指向后台的Action来获取当前用户的信息的Json格式的数据
title: '用户列表', //标识
//下面的这些属性如果谁不太清楚的话我建议去官方网站去学习或者在群里我们讨论,这里就不说了
iconCls: 'icon-user',
// height: function () { return document.body.clientheight - $("#toolbar").height() * 0.9 },
width: function () { return document.body.clientWidth * 0.9 },//自动宽度
nowrap: true,
autoRowHeight: false,
striped: true,
collapsible: true,
pagination: true,
pageSize: 50,
pageList: [50, 100, 200],
rownumbers: true,
//sortName: 'Seq', //根据某个字段给easyUI排序
sortOrder: 'asc',
remoteSort: false,
idField: 'ID',
queryParams: queryData, //异步查询的参数
// frozenColumns
columns: [[
{ field: 'ck', checkbox: true }, //选择
{ title: '主键', field: 'ID', width: 40, sortable: true, hidden: true }, //主键
{ title: '登录名', field: 'UserName', width: 100, sortable: true }, //登录名
{ title: '姓名', field: 'RealName', width: 100, sortable: true }, //用户名
{ title: 'E-Email', field: 'Email', width: 150, sortable: true },
{ title: '性别', field: 'Gender', width: 50, sortable: true },
{ title: '手机', field: 'Mobile', width: 120, sortable: true },
{ title: 'QQ号码', field: 'QICQ', width: 100, sortable: true },
{ title: '创建人', field: 'CreateBy', width: 90, sortable: true },
{ title: '最后修改人', field: 'ModifiedBy', width: 90, sortable: true },
]],
toolbar: [{
id: 'btnadd',
text: '添加',
iconCls: 'icon-add',
handler: function () {
//实现弹出注册信息的页面
ShowAddUserDialog();
}
},'-', {
id: 'btncut',
text: '修改',
iconCls: 'icon-cut',
handler: function () {
//实现修改的方法
UpdateUserInfo();
}
}, '-', {
id: 'btnIsNotCancle',
text: '伪删除',
iconCls: 'icon-remove',
handler: function () {
//实现伪删删除的方法
deleteBaseUserInfo("not");
}
}, '-', {
id: 'btnCancle',
text: '直接删除',
iconCls: 'icon-remove',
handler: function () {
//实现直接删除所有数据的方法
deleteBaseUserInfo();
}
}, '-', {
id: 'btnBrowse',
text: '浏览',
iconCls: 'icon-tip',
handler: function () {
//实现浏览的方法
UpdateUserInfo("browse");
}
}, '-', {
id: 'btnRecycle',
text: '回收站',
iconCls: 'icon-sum',
handler: function () {
//实现回收站的方法
RecycleBinShow();
}
}, '-', {
id: 'btnRestore',
text: '还原',
iconCls: 'icon-back',
handler: function () {
//实现还原的方法
deleteBaseUserInfo("back");
}
}, '-', {
id: 'btnreload',
text: '刷新',
iconCls: 'icon-reload',
handler: function () {
//实现刷新栏目中的数据
$("#grid").datagrid("reload");
}
}, '-', {
id: 'btnSetRole',
text: '设置角色',
iconCls: 'icon-undo',
handler: function () {
//为用户设置角色
SetUserRole();
}
}, '-', {
id: 'btnSetPermission',
text: '设置用户特殊权限',
iconCls: 'icon-undo',
handler: function () {
//为用户设置角色
SetUserRole();
}
}]
});

程序员编程日记 | 园豆:6 (初学一级) | 2014-11-13 14:28
0

 

平远州夜郎人 | 园豆:202 (菜鸟二级) | 2016-05-10 20:12
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册