This question is locked. New answers and comments are not allowed.
How can I associate a Tooltip to the <input type='text'> control ? which is a template.
This tooltip should be on the cell i.e. the Quantity column cell.
...
columns.Bound(r => r.Quantity).Title("Quantity").ToUpperInvariant()
This tooltip should be on the cell i.e. the Quantity column cell.
...
columns.Bound(r => r.Quantity).Title("Quantity").ToUpperInvariant()
.ClientTemplate(
"<#if(PrdId < 0){#>" +
"<input type='text' size='3' maxlength='10' value='<#= Quantity #>'/>"
+ "<# } else {#>" + "<div> <#= UnitQty #></div>" + "<# } #>");
).DataBinding(dataBinding => dataBinding.Ajax().Select("Method", "MyController")).TableHtmlAttributes(new { clientid = "myGrid" })
.ClientEvents(events => events.OnRowDataBound("MyDataRowDataBound"))
)