Hi , I have model with iterating items to show the list of items and I want to show tooltip for each item description. Please help me.
below is the code snippet.
</tr>
@foreach (var item in Model)
{
<tr>
<td>
<ul class="single">
<li>
@Html.ActionLink(item.Name, "LoadValue", "Category", new { item.BusinessId, ViewBag.Environment }, null)
</li>
</ul>
</td>
</tr>
}
I am new to Kendo. and am confused how to bind the tooltip for each item here.