Telerik Forums
UI for ASP.NET AJAX Forum
12 answers
284 views

Hello,

 I'm using RadEditor (Prometheus) in my page, and during the editor's "OnClientLoad" event I'm trying to attach the code for the events like paste, blur with the help of "Telerik.Web.DomElement.addExternalHandler". But I'm getting the following javascript error : "Telerik.Web.DomElement is null or not an object", when I try to run my page . Can anyone help me out in resolving this issue?.

Thanks & Regards,
Reethish

Rumen
Telerik team
 answered on 30 Jul 2008
1 answer
129 views
Hopefully there is a quick and easy way to do this.

I am wanting to collapse a column instead of a group of rows.  Is this possible with the RadGrid?  Are there any examples available?

Thanks!
Pat.
Princy
Top achievements
Rank 2
 answered on 30 Jul 2008
1 answer
89 views
Hello:
      I have some problem.when I use some radcontrol controls
in my page。when I run this page.some wrong message box was
show 
1.'Telerik'not define.
2.'sys'not define
3.'Type'not define
why.what can I do?
Veselin Vasilev
Telerik team
 answered on 30 Jul 2008
13 answers
269 views
Hi,
        I am evaluating the Telerik Rad Combobox. I have business requirement that when I select an item in the list I need to display the corresonding value in the testbox. For example I have declared a combobox as as follows:

<

telerik:RadComboBox ID="RadComboBox1" runat="server">

    <Items>

        <telerik:RadComboBoxItem Value="E" Text="Engineering" />

        <telerik:RadComboBoxItem Value="P" Text="Physics" />

    </Items>

</telerik:RadComboBox>

Now when I select Physics in the list it should display P in the textbox. Please let me know if this is possible with RadComboBox.

Thanks
Hemangajit

Hemangajit
Top achievements
Rank 1
 answered on 30 Jul 2008
2 answers
146 views
Hi,

I use a RadGrid with popup in edit mode and I've choosed template for the edit form type.
In the template I have a RadComboBox and RadCalendar.
At run, when I try to select anything in the combo box, it's open under the popup. I've obtained the same thing with RadCalendar control.
I have this problem since the ASP.NET_AJAX_2008_1_515 release.
Eric Ulliac
Top achievements
Rank 1
 answered on 30 Jul 2008
3 answers
125 views
When navigating to a page that is not one of the panel items the panel collapses, is there a way to make it return to load status?
Rosi
Telerik team
 answered on 30 Jul 2008
3 answers
201 views
I'm back to an error after upgrading to the new version of RadControls and I can't seem to figure out where the problem is. Right now I've stripped down everything so the only thing I have in the web.config is the assembly tag:

<add assembly="Telerik.Charting, Version=2.0.2.0, Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/> 

and the path tag:

<add path="Telerik.RadUploadProgressHandler.ashx" verb="*" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" /> 

I don't have any chart controls on my page and I get the following error on the web.config file

Could not load file or assembly 'Telerik.Charting, Version=2.0.2.0, Culture=neutralPublicKeyToken=d14f3dcc8e3e8763' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 

I checked my GAC and there are no Telerik controls listed, however, I do have the charting assembly listed in my C:\Windows\assembly directory and it's the current version. I tried to access the site from a computer that has never had Telerik installed on it and got the same error, so it's not client specific. I checked the web server and there is nothing listed in the GAC or the assembly directory for Telerik charting.

I'm at a loss of what else to check. The production server is still using 2007.3 and it works fine. Can you help? Thanks.
Ves
Telerik team
 answered on 30 Jul 2008
1 answer
100 views
Hi telerik team.

Please try using the radchart and to set pogramaticly the ActiveRegion Attributes of a ChartSeriesItem. You will find that the attributes will be output twice for the page.

I hope i am clear enough.
Please tell me when this bug will be fixed.

Thanks,
Vadim Rasin.
Giuseppe
Telerik team
 answered on 30 Jul 2008
10 answers
539 views
I believe I've found a bug with the JavaScript for RadGrid.

In dispose, it has:

if(this._onResizeDelegate){

$removeHandler(window,"resize",this._onResizeDelegate);

this._onResizeDelegate=null;

}

This part of the code seems fine.
However, _initializeDimensions has:

if(navigator.userAgent.toLowerCase().indexOf("msie")!=-1){

this._onResizeDelegate=Function.createDelegate(this,this.onWindowResize);

setTimeout(function(){

$addHandler(window,"resize",_1._onResizeDelegate);

},0);

}else{

this._onResizeDelegate=Function.createDelegate(this,this.onWindowResize);

$addHandler(window,"resize",this._onResizeDelegate);

}

The problem is that the resize delegate is saved before the handler is actually added via a call to setTimeout. If the window's location changes before this setTimeout method runs, an exception is thrown because $removeHandler is called when $addHandler never was.
I believe the corrected code would be as follows:

if(navigator.userAgent.toLowerCase().indexOf("msie")!=-1){

setTimeout(function(){

this._onResizeDelegate=Function.createDelegate(this,this.onWindowResize);

$addHandler(window,"resize",_1._onResizeDelegate);

},0);

}else{

this._onResizeDelegate=Function.createDelegate(this,this.onWindowResize);

$addHandler(window,"resize",this._onResizeDelegate);

}

Simply move setting the resize delegate inside anonymous delegate executed by setTimeout. This way, if setTimeout never runs, the resize delegate is null and $removeHandler is never called.

If necessary, I can post an example of this error. It's easily reproduced via something like a client-side refresh/redirect.

Thanks for looking into this.

David

Sebastian
Telerik team
 answered on 30 Jul 2008
1 answer
134 views
Hi!
Is there a swedish localization for the Ajax RadEditor?
Please say one exist and my upcoming weekend is saved :)

Regards
Stefan Pettersson
Rumen
Telerik team
 answered on 30 Jul 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?