How to enable tooltip for each row of the grid? The grid has Id and price and want to put the tooltip in the column Id. Thanks
var source = {
datafields: [ { name: ‘Id’ },
{ name: ‘Price’ },
{ name: ‘Description’ },
],
url: ‘@Url.Action(“GetTike”, “Timesheet”)’,
datatype: “json”,
cache: false,
type: “POST”
};
$(“#jqxGridTike”).jqxGrid({
width: ‘100%’,
source: source,
theme: ‘tike’,
pageable: true,
autoheight: true,
altrows: true,
columns: [ { text: ‘Id’, datafield: ‘Id’, width: ‘8%’,
{ text: ‘Price’, datafield: ‘price’, width: ‘8%’ },
]
});