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

The EntryAdded and Removed are not triggering

1 Answer 64 Views
DropDownTree
This is a migrated thread and some comments may be shown as answers.
J
Top achievements
Rank 1
J asked on 17 Jun 2013, 08:28 PM

Version: 2013.1.220.35 Telerik.web.UI

I have dropdown tree on a sharepoint page.

<telerik:RadDropDownTree ID="RadDropDownTreeTest" runat="server" AutoPostBack="true"

DefaultMessage="Please select" CheckBoxes="TriState"

OnEntryAdded="RadDropDownTreeTest_EntryAdded"

OnEntryRemoved="RadDropDownTreeTest_EntryRemoved">

<DropDownSettings Width="200px" />

</telerik:RadDropDownTree>


cs file:

 

protected

 

void RadDropDownTreeTest_EntryAdded(object sender, DropDownTreeEntryEventArgs e)

{

 

lblTest.Text = e.Entry.Value;

}

 

protected void RadDropDownTreeTest_EntryRemoved(object sender, DropDownTreeEntryEventArgs e)

{

 

lblTest.Text = e.Entry.Value;

}

I also tried hooking the events on page load but no change. The data appears in tree view and events are not triggering though the page shows selected node.

Not sure what is worng with the code.

thanks for you help.

1 Answer, 1 is accepted

Sort by
0
J
Top achievements
Rank 1
answered on 17 Jun 2013, 08:58 PM
I saw other posts and found that others also find similar behavior. I closed the studio and then the events started triggering. I think there is some problem there.
Tags
DropDownTree
Asked by
J
Top achievements
Rank 1
Answers by
J
Top achievements
Rank 1
Share this question
or