title | page_title | description | slug | tags | published | position |
---|---|---|---|---|---|---|
Render Modes |
Render Modes - RadTooltip |
Check our Web Forms article about Render Modes. |
tooltip/mobile-support/render-modes |
render,modes |
true |
1 |
-
@template In this mode tables and background images (in several sprites) are used to create the layout (including rounded corners and shadows).
-
@template This functionality was added in Q3 2013.
note A RadToolTip created by a RadToolTipManager will inherit the manager's render mode.
There are two ways to configure the rendering mode of the controls:
-
The RenderMode property in the markup or in the code-behind that can be used for a particular instance:
ASP.NET
<telerik:RadToolTip ID="RadToolTip1" runat="server" RenderMode="Lightweight"> </telerik:RadToolTip> <telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" RenderMode="Lightweight"> </telerik:RadToolTipManager>
C#
RadToolTip1.RenderMode = Telerik.Web.UI.RenderMode.Lightweight; RadToolTipManager1.RenderMode = Telerik.Web.UI.RenderMode.Lightweight;
VB
RadToolTip1.RenderMode = Telerik.Web.UI.RenderMode.Lightweight RadToolTipManager1.RenderMode = Telerik.Web.UI.RenderMode.Lightweight
-
A global setting in the web.config file that will affect the entire application, unless a concrete value is specified for a given control instance:
XML
<appSettings> <add key="Telerik.Web.UI.ToolTip.RenderMode" value="Lightweight" /> </appSettings>