BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
$("#node_5_popup_tt").ejTooltip({"width":"180px","content":"ToolTipText","target":".custom","clientId":"node_5_popup_tt","uniqueId":"ctl00$MainContent$node_5_popup$node_5_popup_tt"});
There I'm missing the "For". What am I missing?
<ej:Dialog ID="basicDialog" Content=".control" runat="server" ClientIDMode="Static" Title="Audi Q3 Drive" >
</ej:Dialog>
<ej:Tooltip ID="tooltip1" runat="server" ClientIDMode="Static" ></ej:Tooltip> |
protected void Page_Load(object sender, EventArgs e)
{
tooltip1.Content = "ToolTipText";
tooltip1.For = basicDialog.ID;
tooltip1.Width = "180px";
} |