Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
89 views
When I nest an AutoCompleteBox on a page other than the first page in a MultiPage the
text entered in the AutoCompletBox is hidden to the left of the cursor. Please see code
and screen shots.

<
div>
 
    <telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1">
        <Tabs>
            <telerik:RadTab Text="TAB 1" PageViewID="RadPageView1" />
            <telerik:RadTab Text="TAB 2" PageViewID="RadPageView2" />
        </Tabs>
    </telerik:RadTabStrip>
 
    <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">
         
        <telerik:RadPageView ID="RadPageView1" runat="server">
            <telerik:RadAutoCompleteBox ID="RadAutoCompleteBox1" runat="server" DataSourceID="ds" DataTextField="Name" DataValueField="Id" />
        </telerik:RadPageView>
         
        <telerik:RadPageView ID="RadPageView2" runat="server">
            ABC
        </telerik:RadPageView>
 
    </telerik:RadMultiPage>
 
</div>
 
<div>
 
    <telerik:RadTabStrip ID="RadTabStrip2" runat="server" MultiPageID="RadMultiPage2">
        <Tabs>
            <telerik:RadTab Text="TAB 3" PageViewID="RadPageView3" />
            <telerik:RadTab Text="TAB 4" PageViewID="RadPageView4" />
        </Tabs>
    </telerik:RadTabStrip>
 
    <telerik:RadMultiPage ID="RadMultiPage2" runat="server" SelectedIndex="0">
         
        <telerik:RadPageView ID="RadPageView3" runat="server">
            ABC
        </telerik:RadPageView>
 
        <telerik:RadPageView ID="RadPageView4" runat="server">
            <telerik:RadAutoCompleteBox ID="RadAutoCompleteBox2" runat="server" DataSourceID="ds" DataTextField="Name" DataValueField="Id" />
        </telerik:RadPageView>
         
    </telerik:RadMultiPage>
 
    <asp:SqlDataSource ID="ds" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionStringDB %>" DataSourceMode="DataSet" SelectCommand="SELECT Id, Name FROM Table;" />
 
</div>
Morten
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 14 Dec 2012
9 answers
144 views
I've set the image icon on a radWindow as the following (using a relative path):

<telerik:RadWindow runat="server" ID="UserGuideWindow" Width="500px" Height="400px" Modal="false" Behaviors="Close,Minimize,Move" IconUrl="~/Img/help_small.png">

Users receive the security warning: "do you want to view only the webpage content that was delivered securely" in IE8 when visiting the page over SSL.

I looked in the page source and found this:
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadWindow, {"_dockMode":true,"_stylezindex":"80000","behaviors":38,"clientStateFieldID":"ctl00_UserGuideWindow_ClientState","formID":"aspnetForm","height":"400px","iconUrl":"//Img/help_small.png","minimizeIconUrl":"//Img/help_small.png","name":"UserGuideWindow","skin":"Sitefinity","title":"User Guide","width":"500px"}, null, null, $get("ctl00_UserGuideWindow"));
});

It looks like the icon is not being set correctly, and the browser thinks that the icon is content from another (unsecure) location.

I can confirm that removing the icon reference completely fixed the issue of the security warning being displayed.
Nicolaï
Top achievements
Rank 2
 answered on 14 Dec 2012
2 answers
270 views

I am using radcombo for grid filtering.I am using FilterTemplate for that

Is it possible to display the filter on clicking the header (label) or provide an icon next to header label?

Instead of showing them in a seperate row below header labels? If so, do you have any sample for that?
jason
Top achievements
Rank 1
 answered on 14 Dec 2012
5 answers
116 views
I've had posted my code snip in another forum : http://www.telerik.com/community/forums/aspnet-ajax/rotator/q3-2012-adds-border.aspx#2369096

  1. And I am wanting to figure out a way so that I can cache the result set being returned from the database, as I would be doing just the read operations & the data is not going to be updated per my application scenario.
  2. I also want to be able to retrieve the value of the first column of the selected row (cell selection should be disabled) in the code-behind. I looked at the help topics but could not find something that depicts same or similar to my query.

Thanks for your help,
-Aarsh

Maria Ilieva
Telerik team
 answered on 14 Dec 2012
1 answer
59 views
Hi !

I have a tooltip manager through which I am loading a user control inside tooltip using update panel. The user control contains 6 radio buttons and two command buttons. I want to display a loading panel inside tooltip on clicking command button. I tried out using RadAjaxManagerProxy and RadAjaxLoadingPanel but its not working. Can any one have idea?

Thanks,
Dev
Marin Bratanov
Telerik team
 answered on 14 Dec 2012
13 answers
375 views
Hello,
I am getting the following error message when I try to save the edited image to another location in the Image Editor:
"Cannot write to the target folder!"

I am using 2008.02.1001.2 version.

I did a search about this issue but i found the solution is useless for me since I use an old version.
So Please show me how to fix this bug.

Thank you,
Amr Saafan
http://amrsaafan.blogspot.com/
Vessy
Telerik team
 answered on 14 Dec 2012
4 answers
223 views
Hi there ! I tried to follow up this (http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/nestedviewtemplatedeclarativerelations/defaultcs.aspx) and also referred this (http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/nestedviewtemplate/defaultcs.aspx) demo and my application it works in a similar way as that demo does. But I have a question for this :

What if I want to have >1 results in the nested grid for records in main grid ?

In terms of Northwind Database (to clarify) assume that I want to enlist customers in the main Grid and their Order History in the nested grid using some stored procedure (could not attach the txt file).

My application shows just one record in the nested (inner) grid at the moment. Is there a way to over-come this ?

Thanks,
-Aarsh


-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
Attachment:
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
USE [Northwind]
GO
/****** Object:  StoredProcedure [dbo].[CustOrderHist]    Script Date: 12/11/2012 09:26:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[CustOrderHist] @CustomerID nchar(5)
AS
SELECT ProductName, Total=SUM(Quantity)
FROM Products P, [Order Details] OD, Orders O, Customers C
WHERE C.CustomerID = @CustomerID
AND C.CustomerID = O.CustomerID AND O.OrderID = OD.OrderID AND OD.ProductID = P.ProductID
GROUP BY ProductName
Angel Petrov
Telerik team
 answered on 14 Dec 2012
1 answer
140 views
Hi,
I used this example DEMO, in the ProductDetailsCS.ascx I'd put a button to download a file save in server's folder and save filename on DB, but when click on button show me this error: "Error en tiempo de ejecución de Microsoft JScript: Sys.WebForms.PageRequestManagerParserErrorException: No se pudo analizar el mensaje recibido del servidor. Este error suele producirse cuando la respuesta resulta modificada por llamadas a Response.Write() o cuando los filtros de respuesta, los HttpModules o el seguimiento de servidor están habilitados.
Detalles: Error de análisis cerca de 'PK"

Code Button to Download is
protected void Descargar_Click(object sender, EventArgs e)
        {
            string filePath = ((Label)FormView1.FindControl("DocumentoConvocatoriaLabel")).Text;
            string archivo = "~/DocsGC/"+filePath;
            Response.Clear();
            Response.ContentType = "application/vnd.ms-excel, application/pdf, application/vnd.ms-excel";
            Response.AddHeader("Content-Disposition", "attachment;filename=\"" + archivo + "\"");
            Response.Flush();
            Response.TransmitFile(Server.MapPath(archivo));
            Response.End();
        }
Then my FormView on usercontrol:
<asp:FormView ID="FormView1" runat="server" DataKeyNames="IDGC"
    DataSourceID="SqlDataSourceFormView1" style="text-align: center">
    <EditItemTemplate>
        Convocatoria:
        <asp:TextBox ID="ConvocatoriaTextBox" runat="server"
            Text='<%# Bind("Convocatoria") %>' />
        <br />
        IDGC:
        <asp:Label ID="IDGCLabel1" runat="server" Text='<%# Eval("IDGC") %>' />
        <br />
        AreaConvocatoria:
        <asp:TextBox ID="AreaConvocatoriaTextBox" runat="server"
            Text='<%# Bind("AreaConvocatoria") %>' />
        <br />
        MontoFina:
        <asp:TextBox ID="MontoFinaTextBox" runat="server"
            Text='<%# Bind("MontoFina") %>' />
        <br />
        MontoFinaHasta:
        <asp:TextBox ID="MontoFinaHastaTextBox" runat="server"
            Text='<%# Bind("MontoFinaHasta") %>' />
        <br />
        TipoDinero:
        <asp:TextBox ID="TipoDineroTextBox" runat="server"
            Text='<%# Bind("TipoDinero") %>' />
        <br />
        Cambio:
        <asp:TextBox ID="CambioTextBox" runat="server" Text='<%# Bind("Cambio") %>' />
        <br />
        Duracion:
        <asp:TextBox ID="DuracionTextBox" runat="server"
            Text='<%# Bind("Duracion") %>' />
        <br />
        PlazoConvocatoria:
        <asp:TextBox ID="PlazoConvocatoriaTextBox" runat="server"
            Text='<%# Bind("PlazoConvocatoria") %>' />
        <br />
        PlazoEnvio:
        <asp:TextBox ID="PlazoEnvioTextBox" runat="server"
            Text='<%# Bind("PlazoEnvio") %>' />
        <br />
        ModoEnvio:
        <asp:TextBox ID="ModoEnvioTextBox" runat="server"
            Text='<%# Bind("ModoEnvio") %>' />
        <br />
        Contraparte:
        <asp:TextBox ID="ContraparteTextBox" runat="server"
            Text='<%# Bind("Contraparte") %>' />
        <br />
        ObjetivosConv:
        <asp:TextBox ID="ObjetivosConvTextBox" runat="server"
            Text='<%# Bind("ObjetivosConv") %>' />
        <br />
        TemasPrio:
        <asp:TextBox ID="TemasPrioTextBox" runat="server"
            Text='<%# Bind("TemasPrio") %>' />
        <br />
        AsociosRequeridos:
        <asp:TextBox ID="AsociosRequeridosTextBox" runat="server"
            Text='<%# Bind("AsociosRequeridos") %>' />
        <br />
        Elegibilidad:
        <asp:TextBox ID="ElegibilidadTextBox" runat="server"
            Text='<%# Bind("Elegibilidad") %>' />
        <br />
        Idioma:
        <asp:TextBox ID="IdiomaTextBox" runat="server" Text='<%# Bind("Idioma") %>' />
        <br />
        Observaciones:
        <asp:TextBox ID="ObservacionesTextBox" runat="server"
            Text='<%# Bind("Observaciones") %>' />
        <br />
        DocumentoConvocatoria:
        <asp:TextBox ID="DocumentoConvocatoriaTextBox" runat="server"
            Text='<%# Bind("DocumentoConvocatoria") %>' />
        <br />
        FechaRegistro:
        <asp:TextBox ID="FechaRegistroTextBox" runat="server"
            Text='<%# Bind("FechaRegistro") %>' />
        <br />
        Donante:
        <asp:TextBox ID="DonanteTextBox" runat="server" Text='<%# Bind("Donante") %>' />
        <br />
        Estado:
        <asp:TextBox ID="EstadoTextBox" runat="server" Text='<%# Bind("Estado") %>' />
        <br />
        <asp:LinkButton ID="UpdateButton" runat="server" CausesValidation="True"
            CommandName="Update" Text="Actualizar" />
         <asp:LinkButton ID="UpdateCancelButton" runat="server"
            CausesValidation="False" CommandName="Cancel" Text="Cancelar" />
    </EditItemTemplate>
    <InsertItemTemplate>
        Convocatoria:
        <asp:TextBox ID="ConvocatoriaTextBox" runat="server"
            Text='<%# Bind("Convocatoria") %>' />
        <br />
 
        AreaConvocatoria:
        <asp:TextBox ID="AreaConvocatoriaTextBox" runat="server"
            Text='<%# Bind("AreaConvocatoria") %>' />
        <br />
        MontoFina:
        <asp:TextBox ID="MontoFinaTextBox" runat="server"
            Text='<%# Bind("MontoFina") %>' />
        <br />
        MontoFinaHasta:
        <asp:TextBox ID="MontoFinaHastaTextBox" runat="server"
            Text='<%# Bind("MontoFinaHasta") %>' />
        <br />
        TipoDinero:
        <asp:TextBox ID="TipoDineroTextBox" runat="server"
            Text='<%# Bind("TipoDinero") %>' />
        <br />
        Cambio:
        <asp:TextBox ID="CambioTextBox" runat="server" Text='<%# Bind("Cambio") %>' />
        <br />
        Duracion:
        <asp:TextBox ID="DuracionTextBox" runat="server"
            Text='<%# Bind("Duracion") %>' />
        <br />
        PlazoConvocatoria:
        <asp:TextBox ID="PlazoConvocatoriaTextBox" runat="server"
            Text='<%# Bind("PlazoConvocatoria") %>' />
        <br />
        PlazoEnvio:
        <asp:TextBox ID="PlazoEnvioTextBox" runat="server"
            Text='<%# Bind("PlazoEnvio") %>' />
        <br />
        ModoEnvio:
        <asp:TextBox ID="ModoEnvioTextBox" runat="server"
            Text='<%# Bind("ModoEnvio") %>' />
        <br />
        Contraparte:
        <asp:TextBox ID="ContraparteTextBox" runat="server"
            Text='<%# Bind("Contraparte") %>' />
        <br />
        ObjetivosConv:
        <asp:TextBox ID="ObjetivosConvTextBox" runat="server"
            Text='<%# Bind("ObjetivosConv") %>' />
        <br />
        TemasPrio:
        <asp:TextBox ID="TemasPrioTextBox" runat="server"
            Text='<%# Bind("TemasPrio") %>' />
        <br />
        AsociosRequeridos:
        <asp:TextBox ID="AsociosRequeridosTextBox" runat="server"
            Text='<%# Bind("AsociosRequeridos") %>' />
        <br />
        Elegibilidad:
        <asp:TextBox ID="ElegibilidadTextBox" runat="server"
            Text='<%# Bind("Elegibilidad") %>' />
        <br />
        Idioma:
        <asp:TextBox ID="IdiomaTextBox" runat="server" Text='<%# Bind("Idioma") %>' />
        <br />
        Observaciones:
        <asp:TextBox ID="ObservacionesTextBox" runat="server"
            Text='<%# Bind("Observaciones") %>' />
        <br />
        DocumentoConvocatoria:
        <asp:TextBox ID="DocumentoConvocatoriaTextBox" runat="server"
            Text='<%# Bind("DocumentoConvocatoria") %>' />
        <br />
        FechaRegistro:
        <asp:TextBox ID="FechaRegistroTextBox" runat="server"
            Text='<%# Bind("FechaRegistro") %>' />
        <br />
        Donante:
        <asp:TextBox ID="DonanteTextBox" runat="server" Text='<%# Bind("Donante") %>' />
        <br />
        Estado:
        <asp:TextBox ID="EstadoTextBox" runat="server" Text='<%# Bind("Estado") %>' />
        <br />
        <asp:LinkButton ID="InsertButton" runat="server" CausesValidation="True"
            CommandName="Insert" Text="Insertar" />
         <asp:LinkButton ID="InsertCancelButton" runat="server"
            CausesValidation="False" CommandName="Cancel" Text="Cancelar" />
    </InsertItemTemplate>
    <ItemTemplate>
        <table align="center" border="1" class="style2" frame="box">
            <tr>
                <td colspan="2">
                    Convocatoria:
                    <br />
                    <strong>
                    <asp:Label ID="ConvocatoriaLabel" runat="server" CssClass="style1"
                        Text='<%# Bind("Convocatoria") %>' />
                    </strong>
                </td>
            </tr>
            <tr>
                <td colspan="2">
                    Código Convocatoria:
                    <br />
                    <asp:Label ID="IDGCLabel" runat="server"
                        style="color: #FFFFFF; font-weight: 700" Text='<%# Eval("IDGC") %>' />
                </td>
            </tr>
            <tr>
                <td colspan="2">
                     </td>
            </tr>
            <tr>
                <td>
                    Donante:</td>
                <td style="text-align: justify">
                    <b>
                    <asp:Label ID="DonanteLabel" runat="server" CssClass="style3"
                        style="text-align: justify" Text='<%# Bind("Donante") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    AreaConvocatoria:</td>
                <td>
                    <b>
                    <asp:Label ID="AreaConvocatoriaLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("AreaConvocatoria") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    MontoFina:</td>
                <td>
                    <b>
                    <asp:Label ID="MontoFinaLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("MontoFina") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    MontoFinaHasta:</td>
                <td>
                    <b>
                    <asp:Label ID="MontoFinaHastaLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("MontoFinaHasta") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    TipoDinero:</td>
                <td>
                    <b>
                    <asp:Label ID="TipoDineroLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("TipoDinero") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    Cambio:</td>
                <td>
                    <b>
                    <asp:Label ID="CambioLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("Cambio") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    Duracion:</td>
                <td>
                    <b>
                    <asp:Label ID="DuracionLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("Duracion") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    PlazoConvocatoria:</td>
                <td>
                    <b>
                    <asp:Label ID="PlazoConvocatoriaLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("PlazoConvocatoria", "{0:dd/MM/yyyy}") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    PlazoEnvio:</td>
                <td>
                    <b>
                    <asp:Label ID="PlazoEnvioLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("PlazoEnvio", "{0:dd/MM/yyyy}") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    ModoEnvio:</td>
                <td>
                    <b>
                    <asp:Label ID="ModoEnvioLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("ModoEnvio") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    Contraparte:</td>
                <td>
                    <b>
                    <asp:Label ID="ContraparteLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("Contraparte") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    ObjetivosConv:</td>
                <td>
                    <b>
                    <asp:Label ID="ObjetivosConvLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("ObjetivosConv") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    TemasPrio:</td>
                <td>
                    <b>
                    <asp:Label ID="TemasPrioLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("TemasPrio") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    AsociosRequeridos:</td>
                <td>
                    <b>
                    <asp:Label ID="AsociosRequeridosLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("AsociosRequeridos") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    Elegibilidad:</td>
                <td>
                    <b>
                    <asp:Label ID="ElegibilidadLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("Elegibilidad") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    Idioma:</td>
                <td>
                    <b>
                    <asp:Label ID="IdiomaLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("Idioma") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    Observaciones:
                </td>
                <td>
                    <b>
                    <asp:Label ID="ObservacionesLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("Observaciones") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td>
                    DocumentoConvocatoria:</td>
                <td>
                    <b>
                    <asp:Label ID="DocumentoConvocatoriaLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("DocumentoConvocatoria") %>' />
                    <br />
                    </b>
                    <asp:Button ID="Descargar" runat="server" onclick="Descargar_Click"
                        Text="Descargar" />
                </td>
            </tr>
            <tr>
                <td>
                    FechaRegistro:</td>
                <td>
                    <b>
                    <asp:Label ID="FechaRegistroLabel" runat="server" CssClass="style3"
                        Text='<%# Bind("FechaRegistro", "{0:dd/MM/yyyy}") %>' />
                    </b>
                </td>
            </tr>
            <tr>
                <td colspan="2">
                     </td>
            </tr>
            <tr>
                <td colspan="2">
                    Estado:
                </td>
            </tr>
            <tr>
                <td colspan="2" style="text-align: justify">
                    <asp:Label ID="EstadoLabel" runat="server"
                        style="font-weight: 700; color: #FFFFFF" Text='<%# Bind("Estado") %>' />
                </td>
            </tr>
        </table>
 
    </ItemTemplate>
</asp:FormView>
Any Idea??
Thanks.
Marin Bratanov
Telerik team
 answered on 14 Dec 2012
7 answers
310 views
Hi, I have two issues that are occurring in different browsers (and not in some others). Im Using Q2 2012. I have a RadGrid containing an hyperlink column where I add dynamically in code-behind a RadTooltip (containing an image) on some conditions.

Browser versions: Chrome Version 23.0.1271.95 m , Safari for Windows 5.1.7 (7534.57.2) , Opera 12.02 (Build 1578) , Firefox 16.0.2, IE8.

Issue #1 (occuring in Chrome , Safari and Opera but not in Firefox and IE8):
When clicking quickly (not letting time to tooltip to show) on the hyperlink, it opens the image in a new browser window (no problem so far). When I come back to my original page, the tooltip image is shown (but it shouldnt). In Chrome and Safari, this doesnt occur if we click on the link and quickly move the cursor off the hyperlink (before the new page loads), but it is still annoying for users (note that tooltip should only appear after being hovering the link for 1 sec).

Issue #2 (occuring only in Chrome): when tooltip image is shown and hyperlink in low in browser screen, pop-up is not located where we can fully see it. All other browsers seem to adjust the popping location of the tooltip so we dont have to scroll down to see it (or minimal scroll is required).

maybe those issues are browser limitations, but Im just making sure. Or maybe Q3 2012 has these already resolved?

RadGrid column:
<telerik:GridTemplateColumn HeaderText="" UniqueName="strFieldValue" HeaderStyle-Width="75%" Resizable="true" Reorderable="true">
                                                <ItemTemplate>
                                                  <asp:HyperLink ID="hl" Target="_blank" runat="server" Text='<%# Eval("LinkResource")%>' NavigateUrl='<%# Eval("LinkValue")%>'></asp:HyperLink>
                                                </ItemTemplate>
</telerik:GridTemplateColumn>

Conditional Tooltip assignation when data are bound:
protected void RadGrid2_OnItemDataBound(object sender, GridItemEventArgs e)
        {
 
            if (e.Item is GridDataItem)
            {
                Control HyperLink = e.Item.FindControl("hl");
 
                if (((DTO)e.Item.DataItem).LinkValue != "" && ((DTO)e.Item.DataItem).blnIsImage)
                {
                    this.RadToolTipManager1.TargetControls.Add(HyperLink.ClientID, ((DTO)e.Item.DataItem).LinkValue, true);
                }
 
            }
 
        }

Tooltip setup:
protected void RadToolTipManager_OnAjaxUpdate(object sender, ToolTipUpdateEventArgs args)
        {
            UpdateToolTip(args.Value, args.UpdatePanel, Page);
        }
 
public void UpdateToolTip(string strVal, UpdatePanel panel, System.Web.UI.Page pg)
        {
            Control ctrl = pg.LoadControl("ucTooltipContainer.ascx");
            panel.ContentTemplateContainer.Controls.Add(ctrl);
            ucTooltipContainer details = (ucTooltipContainer)ctrl;
 
            if (strVal != "")
            {
                details.SetImage(strVal);
            }
        }
 
public void SetImage(string strPath)
        {
            TooltipImage.ImageUrl = strPath;
        }

TooltipManager definition:
<telerik:RadToolTipManager runat="server" ShowDelay="1000" AutoCloseDelay="0"  ID="RadToolTipManager1"
RelativeTo="Element"  Position="MiddleRight" OnAjaxUpdate="RadToolTipManager_OnAjaxUpdate" Skin="WebBlue"
HideEvent="LeaveTargetAndToolTip"  Width="480px" Height="227px">
</telerik:RadToolTipManager>
Marin Bratanov
Telerik team
 answered on 14 Dec 2012
1 answer
111 views
Hi,
i want to show my data like on  attached image . i want export to excel this data without losing format and appearance and style.
Radgrid or reporting tools? Which one is the best choice?
Kostadin
Telerik team
 answered on 14 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?