When a user hovers on the element in the table, he should see the message for that element. The message is stored as a property in the model.
This is what I have done so far:
<table>
<tr>
<td data-toggle="tooltip" data-placement="right" title=@item.Message>Message</td>
</tr>
</table>
The message is getting displayed inside the tooltip if its just a few characters, but a really long message is not getting displayed.Any idea what should I do?