I have a column with some notes displaying in the rows. Since the notes is huge, I have cut short that notes in the controller itself and sent that to my aspx page. What I want to achieve is, I want to display the complete notes in the form of a tool tip on mouse over of the grid row ( or if possible exactly on cell ). Is there any way to achieve this ? Any help would be highly appreciated. Thanks in Advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Posting the answer as it might help anyone. I got that working after doing this... columns.Bound(p => p.partialNotes).Title("Description").HeaderHtmlAttributes(new { style = "text-align:center" }).HtmlAttributes(new { style = "text-align:left" }).Width("8%").HtmlAttributes(new { title = "#= completeNotes #" }); I have just added HtmlAttributes(new { title = "#= completeNotes #" }) So now when I place the mouse over the Description column data , I get the complete Notes as a tool tip. |
|||
|
|
|
Using a 3rd party widget is also a possibility. I've added qtip tips to column headers like this KendoUI grid column array item
The header template
Tooltip generator
|
|||
|
|
