This is a migrated thread and some comments may be shown as answers.

Grid Is Hidden Inside a RadToolTip

1 Answer 68 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Muhammad
Top achievements
Rank 1
Muhammad asked on 13 Jan 2011, 04:08 PM
I have placed my grid inside a radtooltip but when I hover my mouse the tooltip is showing but my Grid is hidden. Please explain me why its happening.

 <ItemTemplate>
                <asp:Label ID="lblJobStatus" runat="server" Text='<%# FF_JobState.GetJobStateSummary(Container.DataItem) %>' />
                <div id="divJobStatus" class="tooltip">
                    <telerik:RadToolTip ID="RadToolTipJobStatus" runat="server" CssClass="tooltipBackColor"
                        TargetControlID="lblJobStatus" RelativeTo="Element" HideDelay="3000" HideEvent="LeaveTargetAndToolTip"
                        ShowCallout="true" Position="TopRight" Width="350px" Height="200px">
                        <asp:GridView ID="gvJobStates" runat="server" AutoGenerateColumns="False" ShowHeader="False"
                            Width="300px" CssClass="gridviewSpacing gvJobStates">
                            <Columns>
                                <asp:TemplateField SortExpression="JobStateName">
                                    <ItemTemplate>
                                        <asp:Label ID="lblJobStateName" runat="server" Text='<%# Eval("JobStateName") %>' />
                                        <asp:HiddenField ID="hidJobStateKey" runat="server" Value='<%# Eval("JobStateKey")%>' />
                                    </ItemTemplate>
                                    <ItemStyle Width="200px" />
                                </asp:TemplateField>
                                <asp:TemplateField>
                                    <ItemTemplate>
                                        <asp:CheckBox ID="cbIsCompleted" runat="server" AutoPostBack="true" OnCheckedChanged="cbIsCompleted_CheckedChanged"
                                            Checked='<%# Eval("IsCompleted")%>' ValidationGroup='<%# Eval("JobStateKey")%>' />
                                    </ItemTemplate>
                                    <ItemStyle Width="80px" />
                                </asp:TemplateField>
                            </Columns>
                        </asp:GridView>
                    </telerik:RadToolTip>                    
                </div>
            </ItemTemplate>

1 Answer, 1 is accepted

Sort by
0
Tsvetina
Telerik team
answered on 18 Jan 2011, 12:27 PM
Hi Muhammad,

From the code that you have pasted, it seems that you are using an asp GridView but this forum is dealing with questions about RadGrid. Could you please confirm which control are you using? If it is not RadGrid, you should either try it to see if the problem is caused by the gridview or post in the RadTooltip forum.

Kind regards,
Tsvetina
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Grid
Asked by
Muhammad
Top achievements
Rank 1
Answers by
Tsvetina
Telerik team
Share this question
or