datatables插件中csv按钮的工具提示

时间:2013-03-21 07:12:41

标签: button csv tooltip datatables

是否有任何选项可以为数据表中的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
]       
} );

请帮帮我。

提前致谢。

1 个答案:

答案 0 :(得分:1)

您可以使用sTooltip:

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

请参阅sTooltip options in Flash button options part here

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