I have Visual Studio 2005 and 2008 installed on my computer. The install seems to work fine. The problem is that I don's see any of the rad controls in my toolbox. I run the register rad control option and still nothing. When I manually try to register the controls into my tool box from the telerick
"C:\Program Files\Telerik\RadControls for ASPNET AJAX Q1 2008\Bin" folder
I get this error "Could not load file or assembly system.web.extensions version=1.061025.0
When I manually try to register the controls into my tool box from the telerick
"C:\Program Files\Telerik\RadControls for ASPNET AJAX Q1 2008\Bin35" folder it seems to work
fine except the controls don't show up in the toolbox even though they are checked off in the .net framework components tab.
I didn't have this second problem with the demo version.
aspPanel.Visible =
true;
grid2.Visible =
false;
The button command in grid2 makes a call to function that does this:
aspPanel.Visible = true;
grid1.Visible =
false;
The button command in the asp:panel makes a call to a function that does this:
// hide the panel
aspPanel.Visible =
false;
// show all the grids
grid1.Visible = true;
grid2.Visible =
true;
I'm thinking it has something to do with how I configure the AjaxManager so here is how I have it set up right now:
ajaxManager.AjaxSettings.AddAjaxSetting(grid1, grid1);
ajaxManager.AjaxSettings.AddAjaxSetting(grid2, grid2);
ajaxManager.AjaxSettings.AddAjaxSetting(grid1, aspPanel);
ajaxManager.AjaxSettings.AddAjaxSetting(grid2, aspPanel);
|

<!-- code using telerik rad grid for displaying default view of competencies -->
<telerik:RadGrid ID="lstCompetencies" runat="server" AllowPaging="True"
AllowSorting="True" GridLines="both" Skin="WebBlue"
PagerStyle-Mode="Slider" Width="610px" PageSize="25">
<ExportSettings ExportOnlyData="False" FileName="Competencies" Excel-Format="Html"
OpenInNewWindow="True">
</ExportSettings>
<PagerStyle Mode="Slider" />
<MasterTableView autogeneratecolumns="False">
<RowIndicatorColumn Visible="False">
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn Visible="False" Resizable="False">
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridTemplateColumn>
<ItemTemplate>
<asp:Label ID="lblComp" Text='<% #Eval("CompetencyName") %>' runat="server"></asp:Label>
<!-- POP Up control for displaying competency info -->
<telerik:RadToolTip runat="server" ID="RadToolTip1"
TargetControlID="lblComp" IsClientID="False" OffsetY="4" Sticky="true" Animation="Slide"
Position="BottomRight" RelativeTo="Element" Skin="Web20">
<b><asp:Label Font-Underline="True" id="lbl0" Width="100%" text="Competency Description" runat="Server"/></b><br /><br />
<asp:Label Width="100%" text='<%# "<b>Competency Name</b> : " & Eval("CompetencyName")%>' runat="Server"/><br />
<asp:Label Width="100%" text='<%# "<b>Category Name</b> : " & Eval("CatogeryName") %>' runat="Server"/><br />
<asp:Label Width="100%" text='<%# "<b>Description</b> : " & Eval("CompetencyDesc") %>' runat="Server"/><br />
<asp:Label Width="100%" text='<%# "<b>Skill Type</b> : " & Eval("SkillTypeName") %>' runat="Server"/><br />
<asp:Label Width="100%" text='<%# "<b>Skill Level Type</b> : " & Eval("SkillLevelType") %>' runat="Server"/><br />
</telerik:RadToolTip>
<!-- end of pop up control for displaying info -->
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn DataField="CatogeryName" HeaderText="CategoryName"
SortExpression="CatogeryName" UniqueName="CatogeryName">
</telerik:GridBoundColumn>
etc....