
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml" >
<
head runat="server">
<title>Untitled Page</title>
</
head>
<
body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="Button1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<asp:Button ID="Button1" runat="server" Text="Button" />
<telerik:RadGrid ID="RadGrid1" runat="server" Visible="False">
<MasterTableView>
<SortExpressions>
<telerik:GridSortExpression FieldName="GPSDateTime" />
</SortExpressions>
<GroupByExpressions>
<telerik:GridGroupByExpression>
<
SelectFields>
<
telerik:GridGroupByField FieldName="RoadTypeID" HeaderText="Road Type" FieldAlias="RoadTypeID" FormatString="" />
</
SelectFields>
<GroupByFields>
<telerik:GridGroupByField FieldName="RoadTypeID" HeaderText="Road Type" FieldAlias="RoadTypeID" FormatString="" />
</GroupByFields>
</telerik:GridGroupByExpression>
</GroupByExpressions>
</MasterTableView>
<HeaderContextMenu>
<CollapseAnimation Duration="200" Type="OutQuint" />
</HeaderContextMenu>
<FilterMenu>
<CollapseAnimation Duration="200" Type="OutQuint" />
</FilterMenu>
</telerik:RadGrid>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px"
Width="75px">
<img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>'
style="border: 0px;" />
</telerik:RadAjaxLoadingPanel>
</div>
</form>
</
body>
</
html>
many thanks

| protected void RadToolTipManager1_AjaxUpdate(object sender, Telerik.Web.UI.ToolTipUpdateEventArgs e) |
| { |
| Control ctrl = Page.LoadControl("~/search.ascx"); |
| Telerik.Web.UI.RadAjaxPanel pnl = new Telerik.Web.UI.RadAjaxPanel(); |
| pnl.Width = new Unit(500); |
| pnl.Controls.Add(ctrl); |
| e.UpdatePanel.ContentTemplateContainer.Controls.Add(pnl); |
| } |
| <telerik:RadSlidingZone ID="SlidingZone1" runat="server" Width="22"> |
| <telerik:RadSlidingPane ID="SlidingPane1" Title="Navigation" runat="server" Width="150" |
| OnClientDocked="Docked" OnClientUndocked="UnDocked"> |
| </telerik:RadSlidingPane> |
| </telerik:RadSlidingZone> |
| </telerik:RadPane> |
| <telerik:RadSplitBar ID="SplitBar" runat="server" /> |
| function Docked(sender, eventArgs) { |
| var splitBar = $find("<%=SplitBar.ClientID%>"); |
| alert(splitBar.get_enableResize()); |
| splitBar.set_enableResize(true); |
| alert(splitBar.get_enableResize()); |
| } |
| function UnDocked(sender, eventArgs) { |
| var splitBar = $find("<%=SplitBar.ClientID%>"); |
| alert(splitBar.get_enableResize()); |
| splitBar.set_enableResize(false); |
| } |
We have an application which is listing subjects (with an underlying link) in a grid as a search result. (Similar as a search result in a SPS document list). What we want to achieve is this:
When a user moves the mouse pointer over a subject link, a tool tip window should appear which offers a preview of the document content to which the link would lead.
So the follwowing questions arise:
1. Can the Telerik ToolTip be applied on such a link in a list or is it possible only on an icon or image?
2. If we would prepare the relevant text in a database table, can we dynamically control the content which the tool tip shall display? (Depending on a key which is found in the URL?)
3. In case these features above in 1 and 2 are not available out of the box, is it possible to develop such a feature? If so, do you have a recommendation, who could do this?
Thanks for any hint and answer
Peter