数据表修改内联编辑

时间:2016-04-18 16:27:54

标签: jquery datatables

我在数据表上有几列具有相当长的内容,当它们出现在数据表中时显示它们,

enter image description here

我想要做的是当它触发“内联编辑”时,它应该显示未包装在一行中的列内容。现在,它显示了类似的东西,

enter image description here

当内联编辑事件触发时,是否可以将列的css修改为“无包装”?

1 个答案:

答案 0 :(得分:0)

如果我明白你的意思,为什么不这样做呢:

//when event "inline_edit" is triggered in an td
$( "td" ).on("inline_edit", function (){
    //change the CSS values for that td
    $( this ).css( "white-space", "nowrap" );
});