Re: adding dropdown.SelectedItem.text to editor

  •  03-15-2007, 8:55 AM

    Re: adding dropdown.SelectedItem.text to editor

    Adam,
     
    Thanks for your reply.
    Unfortunatly i'm still struggling with this, I can get this working using c#(server side) below is c# that should give you a better idea of what i need to do, I need to be able to do the same thing using Javasript API(client side)
     

    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)

    {

    Editor1.Text+= "##" + DropDownList1.SelectedItem.Text + "##";

    DropDownList1.SelectedValue = "0";

    }
     
    Thanks
View Complete Thread