我正在尝试为我的 jquery 数据表添加 nowrap,但没有成功。
像这样的东西(不工作)
$.ajax( {
"url": 'invokeHawkAgent.gsp',
"success": function ( json ) {
json.bDestroy = true;
$('#tabs-1-contents').dataTable({'data':json,
"fnRowCallback": function( nRow, aData, iDisplayIndex ) {
$('td', nRow).attr('nowrap','nowrap');
return nRow;
}
});
},
"dataType": "json"
} );
工作(但没有 nowrap)
$.ajax( {
"url": 'invokeHawkAgent.gsp',
"success": function ( json ) {
json.bDestroy = true;
$('#tabs-1-contents').dataTable(json);
},
"dataType": "json"
} );
任何想法如何添加 nowrap 到这个?
谢谢!