Class ToolTipExtensions
Html helper extensions associated to shell tool tips
Inheritance
Inherited Members
Namespace: EPiServer.Shell.Web.Mvc.Html
Assembly: EPiServer.Shell.dll
Version: 7.19.2Syntax
public static class ToolTipExtensions
Methods
RenderToolTip(HtmlHelper, ToolTipElement[])
Renders the html used for tool tips. Use the jquery widget epiToolTip to wire this html to an associated element
Declaration
public static void RenderToolTip(this HtmlHelper html, params ToolTipElement[] elements)
Parameters
Type | Name | Description |
---|---|---|
System.Web.Mvc.HtmlHelper | html | The html helper to put the extension on |
ToolTipElement[] | elements | The set of elements to show in the tool tip |
RenderToolTip(HtmlHelper, IDictionary<String, String>)
Renders the html used for tool tips. Use the jquery widget epiToolTip to wire this html to an associated element
Declaration
public static void RenderToolTip(this HtmlHelper html, IDictionary<string, string> elements)
Parameters
Type | Name | Description |
---|---|---|
System.Web.Mvc.HtmlHelper | html | The html helper to put the extension on |
System.Collections.Generic.IDictionary<System.String, System.String> | elements | The set of elements to show in the tool tip |
RenderToolTip(HtmlHelper, IEnumerable<ToolTipElement>)
Renders the html used for tool tips. Use the jquery widget epiToolTip to wire this html to an associated element
Declaration
public static void RenderToolTip(this HtmlHelper html, IEnumerable<ToolTipElement> elements)
Parameters
Type | Name | Description |
---|---|---|
System.Web.Mvc.HtmlHelper | html | The html helper to put the extension on |
System.Collections.Generic.IEnumerable<ToolTipElement> | elements | The set of elements to show in the tool tip |