Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
114 views
Ive developed a website that makes use of modules and http handlers (for RADUpload, DialogHandlers, etc)

After deploying the site for further testing to the hosting company (Fasthosts.co.uk)  I had a problem which the support department told me was down to my web.config file.  They told me to remove the modules and handlers sections.

These provide a major part of my sites functionality so I cant remove then, is there a way around this.  Heres the part of the web.config file

<system.webServer> 
        <validation validateIntegratedModeConfiguration="false"/>  
        <modules> 
            <remove name="ScriptModule"/>  
            <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
            <add name="RadUploadModule" preCondition="integratedMode" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI"/>  
        </modules> 
        <handlers> 
            <remove name="WebServiceHandlerFactory-Integrated"/>  
            <remove name="ScriptHandlerFactory"/>  
            <remove name="ScriptHandlerFactoryAppServices"/>  
            <remove name="ScriptResource"/>  
            <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
            <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
            <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>  
            <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI"/>  
            <add name="Telerik_RadUploadProgressHandler_ashx" verb="*" preCondition="integratedMode" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI"/>  
            <add name="Telerik_Web_UI_DialogHandler_aspx" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2008.3.1125.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/>  
            <add name="Telerik_Web_UI_SpellCheckHandler_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2008.3.1125.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"/>  
        </handlers> 
    </system.webServer> 






im really desparate to sort this out asap as i need to get the site up and running for my client, can anyone help ?
Atanas Korchev
Telerik team
 answered on 15 Oct 2009
1 answer
146 views
I have a Master/Content application and within the content page I dynamically load a user control (ascx). This user control can be loaded many times, and can be viewed with the use of tabs. Each user control has many labels and five image buttons.

On the master page, I have an ajax manager and a loading panel. On the content page, I have an ajax manger proxy and a loading panel, and on the user control, I also have an ajax manager proxy and loading panel.

I have setup the ajax manager proxy on the user control so when a user clicks on one of the image buttons a loading panel is displayed (or should be displayed). This is where I'm having issues. The loading panel only works on the first user control that is loaded. Any other user control created doesn't display the loading panel, however ajax is still working as you don't see the post back.

Any thoughts?

Thnaks!
Iana Tsolova
Telerik team
 answered on 15 Oct 2009
1 answer
94 views
I have two rad tree views in my aspx page. I am binding one of the tree views with a dataset returned from the business method. I am trying to drag a node from this tree view into the empty tree view, but, the node does not get dropped. I am using the code given in this site demo. Please help me.
Schlurk
Top achievements
Rank 2
 answered on 15 Oct 2009
1 answer
171 views
I'm getting the following js errors when trying to use RadListBox as in the 'first look' demo (transfer items between two listboxes)

Line: 2
Char: 13
Error: '$telerik' is undefined
Code: 0
URL: http://localhost:1653/Lighthouse/Candidate/listbox.aspx

I get three of the above errors followed by ...

Line: 111
Char: 1
Error: 'Telerik.Web.UI.RadListBox' is null or not an object
Code: 0
URL: http://localhost:1653/Lighthouse/Candidate/listbox.aspx

Has anyone seen this?  Did I miss a resource file somewhere?
Our company just moved from the Q1 release to the Q2 release.

Thank you.
Atanas Korchev
Telerik team
 answered on 15 Oct 2009
1 answer
114 views
25 Days and $999 spent and I'm still no closer to determining if these products were worth the purchase price. 

This article is very close to what I am trying to accomplish, with some exceptions and many of the samples I have looked at are using inline SQL versus ObjectDataSource or even CslaDataSource. 

I have already created a grid, populated it with Company profile data using CslaDataSource.  Then I have a details grid inside the Company profile grid which I populate with Company Address information.  The Company profile information is pretty straightforward  (Name, Description, etc.) nothing which requires another control with databinding. 

The Company Address grid however, needs to have three RadComboxes on Insert and Update which are databound in the form of: (Select Country, country causes a postback passing countryId to a stored proc to select Regions for that country and bind region; Select Region, region causes a postback passing countryId and regionId to get States for the region and country selected and bind States ComboBox.  For the life of me I cannot figure things out like what events to use during insert versus update or vice versa.  This is really becoming a frustrating product to use.   Both tables have an EditFormType=Template, but I'm willing to not go this route if I find a solution on how to implement the ComboBoxes. 

I faithfully followed the follwing video and was able to make it work very well: http://tv.telerik.com/aspnet/radgrid/telerik-trainer-+-radgrid-nested-tables
I read everything under the following location (everything under the hierarchy folder): http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/declarativerelations/defaultcs.aspx, unfortunately there's not much there for objectdatasources and nothing for csladatasource.

Something like this using objectDataSource would be very helpful: http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/threelevel/defaultcs.aspx

Can anyone give me a sample that uses either object datasource or csladatasource with hierarchal grid, using templates and bound controls inside the nested table's edit and inert template?????

 

Rosen
Telerik team
 answered on 15 Oct 2009
2 answers
88 views
I started playing with RAD ASP.NET controls yesterday. I need to show user control in RADGrid only for insert and not for update. I prefer inline update. Can anyone help me with this ?
Thanks
rs
Top achievements
Rank 1
 answered on 15 Oct 2009
3 answers
111 views
Hi. I have a RadTreeView and i checked if it is empty using RadTreeView.IsEmpty but noew with RadControls for ASP.NET AJAX,  this method always return true.
I find a workaround, RadTreeView.Nodes.Count...
Is this method deprecated ? If so, always return true...
Veselin Vasilev
Telerik team
 answered on 15 Oct 2009
1 answer
160 views
Hi
To improve the perfomance of our webapplication we removed the link to stylesheet in the aspx pages and we have added a seperate project to have the stylesheets. We added a reference to that project and registered the stylesheet references in the style sheet manager in our web (aspx)project.  We referred this link http://www.telerik.com/help/aspnet-ajax/radstylesheetmanager.html to do this.

After doing this change everything works fine in Internet Explorer, but we find discrepancies in the styles applied to RADGrid in Mozilla Firefox.
Please let us know the solution.
regards
Bharath
Atanas Korchev
Telerik team
 answered on 15 Oct 2009
1 answer
76 views
Hello,
I have the following scenario with the Telerik RadControls for ASP.NET Ajax 2009.2.826.20 :
Two panels (P1 (left), P2(right)). In P1 there is a RadTreeView with LoadOnDemand (ServerSideCallback mode). When adding nodes, in the controls collection of the node I have to add a dinamically created table with informations specific for each node. For text I use a Label added in the same collection and node.Value contains the ID of the info. On the client, I am using some functions to remove the table element from each node and display it in the P2 panel. All is good, until I want to expand a node. On the server, in the NodeExpand event handler the Node property of the Telerik.Web.UI.RadTreeNodeEventArgs e argument has a wrong node info. If I have a root node and 5 children nodes and I want to expand the 4th children node, in e.Node I find the text and value of the 2nd node.

Can you tell me what is wrong? Is there any fix for this?

Regards,
Claudiu
Atanas Korchev
Telerik team
 answered on 15 Oct 2009
1 answer
128 views
Hi,

Load on Demand using ADO.NET Data Services for combo box could be implemented with visual studio 2005. If yes please share samples/links related to the same.

Thanks
Venkat
Paul
Telerik team
 answered on 15 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?