Hide Telerik tree view on Body Click
I am using telerik tree view control
@(Html.Telerik().TreeView()
.Name("treeview")
)
and i am binding some tree nodes to this tree view. can u tell me how can i hide the tree view on body click.
Awaiting for your r开发者_JAVA百科eply... Thanks in advance !
Hmm, something like this?
$("body").click(function(e) {
$("treeview").hide();
});
精彩评论