Web Forms :: Implement Drag And Drop Of Node In Treeview?

Jun 14, 2010

iam having a treeview where the sample structure is like this. Cabinet under cabinet there is folder and under folder there are some documents.now i want that documents to move from one folder to another folder using drag and drop ...how can i perform this functionality.

View 4 Replies


Similar Messages:

JQuery :: Drag And Drop Treeview Node To Textarea In Web Forms?

Sep 8, 2010

We have an asp.net treeview control and a texarea. The childnodes of treeview need to be draggable and can be dropped into txtarea.

View 2 Replies

Web Forms :: Drag And Drop TreeView Nodes Of TreeView?

May 7, 2015

Code to drag and drop a TreeNode to another control or tag such as Div or even another TreeView.

View 1 Replies

C# - Drag And Drop A Child Node?

Jul 7, 2010

I had populated data in TreeView control. How will I drag a particular child node from a parent node and drop the dragged one to a DIV or any portion, using JQUERY ? I know in jquery, there are methods "draggable" and "droppable" to make this possible. But I want to drag a particular child node and drop it.

Or atleast How to fetch the text/id of a particular child node using jquery ? I hope I can drag,if I can fetch the child node

View 2 Replies

Web Forms :: Treeview With Drag And Drop From Listbox?

Oct 27, 2010

Users want to have the ability on a page to have a treeview with hierarchy that can be updated by dragging and dropping from a listbox. They can drag a change request from the listbox and drop it on the treeview as a parent request or a child of one of the treenodes. There also needs to be the abililty to drag and drop from within the treeview. With all the changes being done, the item from the listbox would also need to have a field changed to either Parent = 'Yes' or IsChildOf = parent id. My first question is;

1) Is all of this possible?

2) Know of any samples or examples of how this would be accomplished?

3) Is there a better way of doing the hierarchy with parent and children then mentioned above (I hope there is)?

4) What have others done for something like this?

I am open to other thoughts of doing this a better way and I'm sure the users can be persuaded. Prepping for a Access conversion project beginning of year. And if this conversion from A2007 to ASP.NET goes well, there is another major conversion waiting in the wings.

View 2 Replies

Web Forms :: Treeview With Drop Down List On Each Node?

Nov 19, 2010

I'm looking for a treeview with drop down list on each node. the treeview should be dynamicllay created on server side. Each node will have a drop down list and each item of the list will have a different color. When I create the tree on client side, I will have to select dropdown list accroding to a data table.

Also, on the client side, the user should be able to select each node and its leaf to group set the drop down list for one branch.

Is there any controller I can use rather than write my one tree?

View 3 Replies

Web Forms :: Implement Drag And Drop Controls In Webpage?

Sep 30, 2010

i want to implement drag and drop controls in webpage and convert those controls to pdf acrofield with same size and positon.

View 2 Replies

Web Forms :: ImageButton Control Can Use To Implement Drag & Drop

Aug 9, 2010

Can the ImageButton Control be used to implement Drag&Drop? My Drag&Drop function means drag the image,and drop it to desktop as a file or other applications, for example, Office Word,Office Excel,etc. Can the ImageButton Control be used to implement it?

View 1 Replies

Forms Data Controls :: Drag And Drop Functionality In Treeview Control

Nov 23, 2010

Could you point me to a reference article on how to implement drag and drop within a treeview control using ASP.NET in C#? Is this best implemented with AJAX? I will be using an XMLDatasource. Also, I did not want to use any third party control at this point

View 2 Replies

Forms Data Controls :: Drag And Drop From Treeview Onto Datalist/repeater?

May 31, 2010

I have made a monthly view custom calendar.I have taken a repeater to make the control.Now what i want is there is a treeview showing some data.I drag from that treeview onto Datalist/Repeater control.on dropping the value should be inserted into database

View 1 Replies

Implement Drag And Drop?

Feb 2, 2010

I want to implement some drag and drop behaviors in my ASP.NET app. Could someone point me in the right direction for some articles and samples? For example, one example of drag and drop I want to implement is for sorting things.

View 4 Replies

MVC :: Create A Treeview With Drag And Drop Functionality?

Nov 24, 2010

In my MVC project I have to create a treeview with drag and drop functionality .

View 2 Replies

AJAX :: Create A Treeview With Drag Drop Functionality?

Feb 17, 2011

How can i create a Treeview with Drag drop functionality.

I want to show the values in my tree from DB.

View 2 Replies

AJAX :: Drag And Drop / Want To implement A Functionality?

Aug 9, 2010

I need to implement a functionality where I need to drag a tree node value to a textarea for calculation. Which is best, simplest to use for this functionality-- ajax or plain javascript or anything else?

View 5 Replies

JQuery :: Implement A Drag And Drop Feature Into Website

Feb 13, 2011

implementing a drag and drop feature into my website. I was wondering if anyone has any good examples on how this can be done?

View 3 Replies

Forms Data Controls :: Read Selected Node And Its Parent Node Values For Treeview In JavaScript?

Feb 18, 2011

how to read selected node and its parent node values for treeview in asp.net in JAVAscript.

View 3 Replies

Web Forms :: Treeview .each Node In A Treeview Will Need To Display Different Page?

Nov 15, 2010

I have a treeview which will be generated dynamically which need to be displayed on left side and when user clicks on a node it need to open a page on the right side of the same page. and each node has different aspx page. so whenever user selects a node the page details should be displayed on the right side .we can use an iframe on the page which will display the different pages clicked on the node.Is there any alternative i can use to display different pages based on the user selection on the right side without using iframe.

View 5 Replies

Web Forms :: Expand A Particular Node On Treeview

Jun 22, 2010

What I am acheiving is a simple treeview which will have a tree structure

dir1
-- xx
dir2
Simple stuff !. Here is the code

TreeNode tree1 = new TreeNode("dir1", "", "", "dir1", "");
tree.Nodes.Add(tree1);
TreeNode node = new TreeNode("xx", "xx");
tree1.ChildNodes.Add(node);
TreeNode tree2 = new TreeNode("dir2", "", "", "dir2", "");
tree.Nodes.Add(tree2);

Now I want to do is collapse all the tree and find a particular node e.g dir1xx
I have put the code

tree.CollapseAll();
tree.FindNode("dir1").Select(); <-- falls over
tree.FindNode("dir1").Expand();
tree.FindNode("dir1/xx").Select();
tree.FindNode("dir1/xx").Expand();

but it falls over on the 2nd line with object not set

View 1 Replies

Web Forms :: How To Get The Value Of A Treeview's Selected Node

Mar 16, 2010

How do I get the value of a treeview's selected node and it's children's values?

TextBox1.Text = TreeView1.SelectedNode.Text; doesn't do it.

View 5 Replies

Web Forms :: Add Two Chechboxes To Treeview Node?

Mar 8, 2010

I created a tree view and and added nodes from database. following is the code.

[Code]....

[Code]....

Bydefault I'm diplaying checkbox to each node. But I also need to add one more check box with text as "Is View" to each node, how is this possible.

View 2 Replies

Web Forms :: Set Spacing Between Each Node In Treeview?

Dec 9, 2010

How can I set spacing between each node in treeview? the spacing is not the same for all the nodes. I want to manually add different spacing between leaf node and parent node.

View 4 Replies

Web Forms :: Drag And Drop Between 2 Using VB

Jun 4, 2010

I currently have two listboxes and I use arrow buttons to move items from one list to another. Is there a way I could implement drag and dropping between those 2 listboxes.

View 3 Replies

Web Forms :: How To Attach Javascript With Treeview Node

Feb 3, 2011

after populating treeview and i want to traverse in all the node and want to attach javascript if the node has child node. how to do it in asp.net when work with treeview control.

View 1 Replies

Web Forms :: Add A Link On Root Node Of The Treeview?

May 12, 2010

I am binding a treeview through a xml file.

my xml file's code.

[Code]....

I want to add a link of my default.aspx to <MainMenu> tag.

View 7 Replies

Web Forms :: How To Remove A Parent Node In Treeview

Oct 18, 2010

My Tree View Conain the All Department

Admin

office

Department

but i require the Remove the Parent Node( All Department) not child node

Admin

office

Department

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved