Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to add a search button above the TreeView control,but i don't know how to reload the datasource,and how to do in the controller?
this is my view code:
HTML
@(Html.Telerik().TreeView()
                .Name(Model.ValueControlId + "projectroom-treeview")
                        .BindTo(Model.AvailableProjectRooms, mappings =>
                        {
                            mappings.For<ProjectRoom>(binding => binding
                                    .ItemDataBound((item, projectRoom) =>
                                    {
                                        item.Value = projectRoom.RoomGUID.ToString();
                                        item.Text = projectRoom.RoomName;
                                        item.ImageUrl = null;
                                        item.Expanded = true;
                                        item.Selected = projectRoom.RoomGUID == Model.SelectedRoomGUID;
                                    }));
                        })
        .ClientEvents(events => events
                        .OnSelect("onSelectMessage")
                )
        )
Posted

1 solution

any body can help me? thanks very much
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900