If the content of the cell exceeds the cell width then only partial data is shown. How can we show the full cell data, may be on hover via a tooltip?
Nice idea, i will add a tooltip parameter to the column definitions this evening
Thanks!
Tooltips have been added to version 1.9.0. They can either be set globally using the _tooltips_ options parameter:
$("#example-table").tabulator({
tooltips:true,
});
Or on a per column basis in the column definition array:
//column definition in the columns array
{formatter:printIcon, width:40, align:"center", tooltip:true},
The tooltip parameter can take three different types of value
See Formatting Data for full details.
Thank you very much! It's working great! :+1:
Its very nice but if we have an option to add styles, then it would be more comfortable.
They are built in browser tool tips. There is no styling option for this.
If you want a more.custom experience with tooltips then I would suggest using a custom formatter function and use one of the many high quality tooltip libraries that are out there.
Cheers
Oli 馃檪
Most helpful comment
Tooltips have been added to version 1.9.0. They can either be set globally using the _tooltips_ options parameter:
Or on a per column basis in the column definition array:
The tooltip parameter can take three different types of value
See Formatting Data for full details.