This is a migrated thread and some comments may be shown as answers.

Anthem drop down list with RadEditor

2 Answers 76 Views
Editor
This is a migrated thread and some comments may be shown as answers.
blabalblaalala
Top achievements
Rank 1
blabalblaalala asked on 14 Dec 2008, 06:13 PM

Hi all,

I'm trying to use Anthem.DropDownList control to fill RadEditor content.
When selecting a new item on Anthem.DDL it will call the SelectedIndexChanged event of this DDL, and change the RadEditor content.

ASPX file:
 
<anthem:DropDownList id="ddl" runat="server" AutoCallBack="true" onselectedindexchanged="ddl_SelectedIndexChanged" />
<telerik:RadEditor ID="RadEditor1" Runat="server"></telerik:RadEditor>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ddl">
<UpdatedControls><telerik:AjaxUpdatedControl ControlID="RadEditor1" /></UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>

CS file:

protected void ddl_SelectedIndexChanged(object sender, EventArgs e)
{RadEditor1.Content = "BLA BLA";}

It doesn't work =(..Tried with the classic asp.net DropDownList control (changed from anthem: to asp:) and it works (but I need the Anthem one)
Thanks for help,
Ben.

2 Answers, 1 is accepted

Sort by
0
blabalblaalala
Top achievements
Rank 1
answered on 17 Dec 2008, 08:58 PM
Please, anyone?
I must finish my project soon and i need a solution for this problem.

Thanks again for helpers.
0
Accepted
Tervel
Telerik team
answered on 18 Dec 2008, 07:50 AM
Hello Benlivnat,

Perhaps you should post a message on the forums of the Anthem product, because the problem is there.

As you pointed - using a <asp:DropDown> instead works fine. In addition to this, we would only be able to help if you had problems with setting/configuring some Telerik product. In your case, the code related to RadEditor (RadEditor1.Content = "BLA BLA";) executes fine - once the execution thread gets to there.

Best regards,
Tervel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Editor
Asked by
blabalblaalala
Top achievements
Rank 1
Answers by
blabalblaalala
Top achievements
Rank 1
Tervel
Telerik team
Share this question
or