Guido Tapia
Top achievements
Rank 1
Guido Tapia
asked on 10 Jan 2008, 01:05 AM
Hi,
A RadEditor inside an old RadAjaxPanel will always return emty content on the server site.
Putting it inside a new Promethius panel fixes this (not an option for me at the moment).
Thanks
Guido Tapia
A RadEditor inside an old RadAjaxPanel will always return emty content on the server site.
Putting it inside a new Promethius panel fixes this (not an option for me at the moment).
Thanks
Guido Tapia
4 Answers, 1 is accepted
0
Hello Guido Tapia,
The Prometheus RadEditor is built on top of the ASP.NET Ajax extensions. This means that it will not be compatible with the custom ajax implementation in the old RadAjax control.
To make it compatible with the old ajax panel, you can use a client-side event of the panel, which fires at the start of the ajax request and save the editor value manually by calling the following JavaScript function:
RadEditorNamespace.SaveAllEditors();
This way the content will be submitted with the ajax request.
Best wishes,
Lini
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
The Prometheus RadEditor is built on top of the ASP.NET Ajax extensions. This means that it will not be compatible with the custom ajax implementation in the old RadAjax control.
To make it compatible with the old ajax panel, you can use a client-side event of the panel, which fires at the start of the ajax request and save the editor value manually by calling the following JavaScript function:
RadEditorNamespace.SaveAllEditors();
This way the content will be submitted with the ajax request.
Best wishes,
Lini
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
chirag
Top achievements
Rank 1
answered on 20 Jun 2008, 09:13 PM
What has this now become in latest Rad Ajax controls?
RadEditorNamespace is undefined in controls after Prometheus.
RadEditorNamespace is undefined in controls after Prometheus.
0
Hi,
That is correct - the new RadEditor for ASP.AJAX does not use the RadEditorNamespace declaration, as now it is in the Telerik.Web.UI.RadEditor namespace on the client.
That said, the editor integrates fully with AJAX and there are no issues related to AJAX that would require for the editor's content to be explicitly saved using external javascript. Can you specify what is your scenario and why you would need to use this namespace?
Kind regards,
Tervel
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
That is correct - the new RadEditor for ASP.AJAX does not use the RadEditorNamespace declaration, as now it is in the Telerik.Web.UI.RadEditor namespace on the client.
That said, the editor integrates fully with AJAX and there are no issues related to AJAX that would require for the editor's content to be explicitly saved using external javascript. Can you specify what is your scenario and why you would need to use this namespace?
Kind regards,
Tervel
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
chirag
Top achievements
Rank 1
answered on 23 Jun 2008, 06:14 PM