|
Rank: Member Groups: Member
Joined: 9/17/2008 Posts: 13
|
Hello,
I'm trying to insert a CallbackPanel in a table and nothing inside the area set aside for the CBP. Can you tell me why? Below is the code for the area, I omitted any irrelavant code.
<td style="width:459px;"> <eo:CallbackPanel ID="cbpFileList" runat="server" Triggers="{ControlID:trvIntranetFiles;Parameter:}" Height="250px" Width="459px" LoadingHTML="Loading. . ."> <p>Does this show up???</p> <asp:SqlDataSource runat="server" ID="sqlFileList" ConnectionString="<%$ConnectionStrings:Intranet %>"></asp:SqlDataSource> <% sqlFileList.SelectCommand = "SELECT strFileName FROM tbl_filestorage WHERE guidParent = '" + HttpContext.Current.Session["strSelectDirectory"] + "'"; %> <div style="vertical-align:top;width:459px;height:250px;overflow:scroll;border:solid 1px #999999;"> <asp:GridView Width="450" ID="grdFileList" runat="server" AutoGenerateColumns="false" AllowSorting="true" ShowHeader="false"> <Columns> <asp:BoundField ItemStyle-Width="65" DataField="strFileName" HeaderText="File Name" ItemStyle-HorizontalAlign="Center" /> </Columns> <RowStyle CssClass="regRow" /> <AlternatingRowStyle CssClass="altRow" /> <SelectedRowStyle CssClass="selRow" /> </asp:GridView> </div> </eo:CallbackPanel> </td>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
|
|
Rank: Member Groups: Member
Joined: 9/17/2008 Posts: 13
|
Thank you for the suggestion. I've put the control on the most basic page I can and it works. . . Now for the hard part.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
No. 99% of the time you will find out what's wrong when you try to isolate the problem. So I believe you should focus on that.
|
|