I'm trying to add a Kendo Tooltip to a disable DropDownList, but it's not working. :/
My DropDowList:
@(Html.Kendo().DropDownListFor(m => m.AgencyId)                      .OptionLabel("-- Select --")                      .DataTextField("ProviderName")                      .Name("ddlb_FedCarewarePDI_Provider")                      .DataValueField("ProviderId")                      .DataSource(src =>                      {                          src.Read(r =>                          {                              r.Action("getAgencyList", "AgencyReports").Type(HttpVerbs.Post);                          });                      }).HtmlAttributes(new { style = "width: 300px" })                    )
My Kendo Tooltip Code:
@(Html.Kendo().Tooltip()    .For("#ddlb_FedCarewarePDI_Provider")    .ContentTemplateId("template")    .Position(TooltipPosition.Top)    .Width(400)    .Height(500))<script id="template" type="text/x-kendo-template">    <p>#=Something Great Here#</p></script>
Ideas on what I need to fix?

