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

Rad Tree onNodeDragging

1 Answer 75 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Ramakrishna
Top achievements
Rank 1
Ramakrishna asked on 08 Apr 2011, 06:37 AM
we written onNodeDragging event at client side, while draging the node it will fires automatically with out interruption.
here  we paste the code :
 function onNodeDragging(sender, args) {
            if (args._sourceNodes[0]._attributes._data.IsPrerequisiteQuestion == "True" || args._sourceNodes[0]._attributes._data.IsPrerequisiteAttribute == "True") {
                args.set_cancel(true);
                args.IsValid =false;
                return false;
            }
            else {
                args.set_cancel(false);
            }
        }

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 08 Apr 2011, 10:23 AM
Hello,


I am not quite sure about the requirement/problem facing at your side. Could you elaborate about the issue?

More information about the client side event, will be available here: OnClientNodeDragging



-Shinu.
Tags
TreeView
Asked by
Ramakrishna
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or