Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
217 views
I've noticed a rendering issue with the RadDatePicker control when viewed in IE8. It seems the date input portion of the control stretches to fit the entire width of the screen or its parent element, even if a width is set on it.

I don't see the problem when I look at your demo pages when I view them in IE8, but when I create a test page with just a RadDatePicker control on it, I see the problem occur.

Below is the test page I used:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Test.aspx.vb" Inherits="Test" %> 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"
<head runat="server"
    <title>Untitled Page</title> 
</head> 
<body> 
    <form id="form1" runat="server"
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"
        </telerik:RadScriptManager> 
        <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"
        </telerik:RadStyleSheetManager> 
        <telerik:RadDatePicker ID="dpTest" runat="server" Width="150px"
        </telerik:RadDatePicker> 
        <div> 
            <telerik:RadDatePicker ID="RadDatePicker1" runat="server"
            </telerik:RadDatePicker> 
        </div> 
    </form> 
</body> 
</html> 
 

The control works correctly in the other browsers and IE7, but only IE8 is giving me this problem. If you could try this out and tell me if you experience it as well.

Thanks.
Sebastian
Telerik team
 answered on 06 Apr 2009
1 answer
277 views
Hi Guys,

I am working on an application that uses nested UserControls. Each user control has an ajax panel so that they do not perform a full page post back. I have one script manager on the main page. Now when I try to add a new record in a GridView I get the following error:

{"Script control 'PageSizeComboBox' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().\r\nParameter name: scriptControl"}

It was suggested by someone to me that it is because I am using nested ajax panels. Could this be the case?

As an aside, how could I point the ajax panels to the ajax manager from the user controls?

Yavor
Telerik team
 answered on 06 Apr 2009
1 answer
128 views
Hello Every One,

I have used radtreeview control for .net 1.1 and it worked great, just yesturday we bought rad web controls for .net 3.5 and when i drag the radtreeview control from the toolbar to the design window it gives this message.

 

Failed to create 'Telerik.Web.UI.RadTreeview, Telerik.Web.UI, version=2009.1.402.305, culture=neutral, publickeyToken=121fae78165ba3d4'

My syntax is as below

 

<

 

telerik:RadTreeView ID="RadTreeview1" Runat="server"></telerik:RadTreeView>

 

 

 

Can any 1 help me figure why I'm getting this error

Thanks in advance
Victor Jesudason

 

 

Helen
Telerik team
 answered on 06 Apr 2009
2 answers
133 views

Hi,

I just downloaded RAD for ASP.net AJAX. I am running Visual Studio 2008/.NET 3.5. The installation was without any error and I see the RAD controls in my toolbox. However, when I drag and drop any RAD control onto my aspx page I get an error 'Cannot load file or assembly Telerik.Web.UI, Version=2009.1.402.35....'

I can see the DLL in the bin directory under my project.  Please suggest how I can get around this problem.

 

Thanks, Mala

Daniel
Telerik team
 answered on 06 Apr 2009
4 answers
155 views
It looks like this slipped under the radar and didn't get updated.  setUrl(url) still works and set_url(url) does not work.  The other client-side methods were updated (set_Width is now set_width, etc) so I figured this was an oversight.

Great job with the Q1 2008 release so far!  I've only had to make minimal changes from the Promethues Q3 2007 release.
Tervel
Telerik team
 answered on 06 Apr 2009
1 answer
91 views
Not sure where this is coming from.  I am getting the following javascript alert

"The command TranslateTool is not implemented yet."

Any suggestions?
Rumen
Telerik team
 answered on 06 Apr 2009
1 answer
103 views
I am trying to make a declarative client connection to a WCF Service Library along the lines of Vladimir's blog but pointing to my Service Library

 <DataBinding SelectMethod="GetDataAndCount" Location="http://localhost:18524/Service1"
     SortParameterType="Linq" FilterParameterType="Linq">
 </DataBinding>


I just cant get my head around how to configure the WCF Service to get the connection to happen. Obviously the "default" configuration don't work, but regardless of what I try I cant seem to get the connection going. Connection through WcfTestClient works like a charm though.

If anyone can enlighten me it would be most appreciated. Im probably just being dense but I have decided to blame sleep deprevation if there is a obvious and simple solution for this :) The Service Library is hosted in a Windows Service, at least I got that part working.

/Magnus

(edit: removed irrelevant app.config attachment)
Nikolay Rusev
Telerik team
 answered on 06 Apr 2009
1 answer
78 views
Hi, I'm sure I have followed the instructions in the documentation for upgrading but the following is happening:

The website works fine if I put the new dll files into the bin folder, however if I set a break point and run in debug mode, Visual Studio seems to replace the new dlls with the old ones and I lose all new skins etc. Why is this happening? I have replaced the dll's, cleared the GAC and added the new dll refs to the GAC but this does not seem to make any difference. The same happens if I do a build.

Any ideas? I'm obviously missing something..

Thanks,
Matt
Daniel
Telerik team
 answered on 06 Apr 2009
12 answers
781 views
On my parent page (aspx) I have a RadComboBox control with a list of client names.  Next to it I have a link that called "Manage" that opens a RadWindow.

In the RadWindow is a RadGrid where the user can Add/Edit/Delete client names that update the database.

What I'm trying to do is, when the user adds a new client in the RadWindow (which adds it to the database), and he closes the RadWindow, I want the RadComboBox on the parent page to be reloaded automatically with the new data.

Is this possible either via client-side or server-side?

Thanks,

K Wilder
Sebastian
Telerik team
 answered on 06 Apr 2009
1 answer
237 views

HI,

My requirement is to display a hierarchical grid (I will call it as parent grid) with dynamic column( Adding column at runtime ), when user drill down first row, then we are suppose to display similar grid(with no drill down) with dynamic columns.

Problem is: First parent grid is displaying it correctly, when user tries to drill down first row (any row), child grid is getting display correctly but parent grid data is not getting persist .

We are Ajaxifying the grid.
We are using onNeedDatasource event for Parent Grid.
we are using DetailsTableDatabind event for child grid.


Any help on this will be appreciated.

Thanks,

Nikolay Rusev
Telerik team
 answered on 06 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?