Recently I have migrated to newer version of Telerik.Web.UI.dll (from 2008 Q3 to 2009 Q3). I use VS 2005, ASP.NET 2.0 and Asp.NET development server for local testing.
Everything looks fine besides dialogs. All buttons are disabled some reason. And files list shows blank rows (See attached image). I can select blank rows and number of black row equal number of images in the folder. All subfolders are visible as you can see. Same issue happens with all RadEditor dialogs, including: ImageEditor, Templates, etc.
I don’t fink my problem is related to redirection or URL rewriting. If I return old 2008 Q3 library version Telerik.Web.UI.dll back (simply by switching reference in the project and recompiling) all dialogs are working as expected.
What have I missed during migration to new library version? What additional stuff (comparing to old version) latest library version needs to enable dialogs?
Thank you in advance.
Denis.
Hi there,
I am currently building a proof of concept application for a client and I'm trying to integrate the RadCaptcha control into a webpart I am creating for a MOSS 2007 web site, and I'm having a problem with it, being that the image for the CAPTCHA is always broken.
I have added the following to my web.config file:
| <httpHandlers> |
| <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Version=2009.3.1314.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" validate="false" /> |
| </httpHandlers> |
and:
| <handlers> |
| <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Version=2009.3.1314.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> |
| </handlers> |
The reason I am fully qualifying the assembly name is because I am putting the Telerik DLL's in the GAC (both Telerik.Web.UI and Telerik.Web.Design - I have checked the version numbers and they match)
I am creating the RadCaptcha control in code like this:
| protected override void CreateChildControls() |
| { |
| // ... |
| RadCaptcha captcha = new RadCaptcha(); |
| Controls.Add(captcha); |
| // ... |
| } |
Any ideas why it isn't creatng the image for me? Help is appreciated
| <telerik:GridTemplateColumn HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center" |
| HeaderText="Options" AllowFiltering="false" HeaderStyle-Width="13%"> |
| <ItemTemplate> |
| <asp:LinkButton CommandName="Edit" Text="Edit" runat="server"></asp:LinkButton> |
| <asp:HyperLink ID="lnkDel" Text="Del" runat="server"></asp:HyperLink> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |