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

RadTreeview checkbox selection/unselection?

1 Answer 47 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Suresh
Top achievements
Rank 1
Suresh asked on 01 Jun 2012, 11:51 PM
Hi,
i am using RadTreeveiw in my project,  as a part of Section 508 i enabled the checkboxes, as a result of which we can go to the nodes using tabs, upto here it is fine.

now my problem is i am not interested to check or uncheck the checkboxes. is there any property to do that?

even if he clicks also i am not interested to check it?
thank you,
Mohinder Goswami.

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 04 Jun 2012, 04:08 AM
Hi,

Try the following code to cancel the check or uncheck event of a RadTreeView.

JS:
<script type="text/javascript">
    function OnClientNodeChecking(sender, args)
    {
        args.set_cancel(true);
    }
</script>

Hope this helps.

Thanks,
Princy.
Tags
TreeView
Asked by
Suresh
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or