我在我的项目中使用 Jqgrid。在一栏中,我们显示了电子邮件地址。如果我们提供一些较长的电子邮件地址,那么该列会自动根据长度重新调整大小,这会破坏整个网格布局。由于电子邮件没有任何空格,因此它也不会变形。我想忽略额外的内容并显示给定宽度可以容纳多少。我已经尝试过给出固定宽度。请让我知道是否有人对此有解决方案。
代码:
jQuery('#userDetail').jqGrid({
url: endpoint,
datatype: 'json',
height: 50,
colNames:['Names','Email', 'Phone Number', 'Fax Number', 'Country'],
colModel:[
{
name:'names',
index:'names',
sortable: false,
width:200,
resizable: false
}, {
name:'email',
index:'email',
sortable: false,
width:200,
resizable: false
}, {
name:'phone',
index:'phone',
sortable: false,
resizable: false,
width:200
}, {
name:'fax',
index:'fax' ,
sortable: false,
resizable: false,
width:200
}, {
name:'country',
index:'country',
sortable: false,
resizable: false,
width:200,
}
],
multiselect: false,
autowidth: true,
caption: 'User Details',
loadComplete: function(response) {
if(!util.errorHandler(response)){
}
},
jsonReader : {
root: "rows",
page: "page",
total: "total",
records: "records",
id: "_id",
repeatitems: false
},
});
谢谢桑迪