Hi - I need help in attaching a Tooltip to a
dropdown in my grid – to display additional details for each item in the
dropdown list
I
have not been able to adapt any of the Tooltip examples I have found – hoping someone
can help
My
mvc grid column editor template is defined as
columns.Bound(c
=> c.MostRecentTollGate).EditorTemplateName("MostRecentTollGateDDL").Width(150).Filterable(ftb
=> ftb.Multi(true).Search(true))
My editor
dropdown is as follows
@(Html.Kendo().DropDownListFor(m
=> m)
.DataValueField("MostRecentTollGate1")
.DataTextField("MostRecentTollGate1")
.Filter("contains")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("TableRead", "ForecastDetails", new { tableIn = "MostRecentTollGate" }).Data("getGroupType");
});
})
)
the drop down works fine - now i need to add a tooltip
Thanks
Jim