column.tooltip : string Default: undefined
The text for the cell tooltip.
Examples
<table id="grid"></table>
<script>
$("#grid").grid({
dataSource: "../Grid/GetPlayers",
columns: [
{ field: "ID", tooltip: "This is my tooltip 1." },
{ field: "Name", tooltip: "This is my tooltip 2." },
{ field: "PlaceOfBirth", tooltip: "This is my tooltip 3." }
]
});
</script>