0

是否有任何选项可以为数据表中的 csv 按钮提供工具提示?我关于这个 csv 按钮的代码是这样的:

$('#example').dataTable( {
"bProcessing": true,
//"bServerSide": true,
"sAjaxSource": "datatabledb.php",
"bJQueryUI": true,
"sPaginationType": "full_numbers",
//"sDom": 'T<"clear">rt',
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "csv",
"sButtonText": "Save to CSV",
"bFooter":false                             }
]
},
"oLanguage": {
"sSearch": "Search all columns:"
},
"aoColumns": [
null,
{ "bSortable": false }, // disable the sorting property for checkbox header
null,
null,
null,
null,
null,
null,
null,
null
]       
} );

请帮我。

提前致谢。

4

1 回答 1

1

您可以使用 sTooltip :

"aButtons": [{
  "sExtends": "csv",
  "sButtonText": "Save to CSV",
  "sTooltip": "My CSV button's tooltip",
  "bFooter": false
}]

在此处查看 Flash 按钮选项部分中的 sTooltip 选项

编辑根据 Srimanta,“sTooltip”需要在“bFooter”之前工作。

于 2013-03-21T07:25:37.070 回答