I got put tooltip on images to buttons, in case you need someone, destructive criticism is allowed

I got put tooltip on images to buttons, in case you need someone, destructive criticism is allowed

marcondomarcondo Posts: 13Questions: 3Answers: 0
edited October 2015 in Free community support

__ assemble the table

$("#" + tableName).DataTable({
iDisplayLength: 20,
bJQueryUI: true,
pagingType: "full_numbers",
order: [[ 0, "asc" ]],
dom: '<"bottomNav"Bf>rt<"InformNav"i><"pagiNav"lp>',
lengthMenu: [[10, 25, 50, -1], [10, 25, 50, "All"]],
keys: true,
buttons: [
'copy',
'csv',
'excel',
'pdf',
'print',
{
text: 'ADD',
action: function ( e, dt, node, config ) {
addItem(this);
}
},
{
text: 'A+',
action: function ( e, dt, node, config ) {
IncreaseFtPlusMinus(xxl);
}
}
,
{
text: 'A-',
action: function ( e, dt, node, config ) {
IncreaseFtPlusMinus(xxx);
}
}
,
{
text: 'DELL',
action: function ( e, dt, node, config ) {
eraseTable(xxx);
}
}
,
{
text: 'X',
action: function ( e, dt, node, config ) {
Update();
}
}
]
});

__ then this is going

$('A.dt-button span:contains(X)').attr( 'title', 'Refres');
$('A.dt-button span:contains(X)').addClass("dt-button ui-icon ui-icon-refresh").text(" ");

This discussion has been closed.