DragDropGrid
CodePlex Home
Register
|
Sign In
|
CodePlex Home
Home
Downloads
Discussions
Issue Tracker
Source Code
People
License
Close
RSS
All Project Updates
Discussions
Issue Tracker
Releases
Reviews
Source Code
Wiki & Documentation
RSS
Latest Comments (all wiki pages)
1-9
of
9
Comments
< Previous
1
Next >
Show
All
Comments
on
Home
I am having issues with the insert of the data after the drag and drop it deletes the row that was move but never puts the new row in the grid????? Help
Nov 24, 2008
by
montylowe
on
Home
Source code is here... http://www.codeplex.com/dragdropgrid/Release/ProjectReleases.aspx?ReleaseId=10320
Sep 19, 2008
by
burkeholland
on
Home
Is the source code availalbe, could not find it? Would appreciate if it were... thankx, Harry
Aug 20, 2008
by
iwhp1
on
Home
Sorry for the delayed response - I have been out of the country. I think what's happening here is that the grid that accepts the drop must have its columns defined before you can drop into it. It won't work to dymanically bind the source grid and then try to drop on a grid that has not had its columns defined because it won't know where to put what data. If you add two columns to your destination grid in the designer, so the grid knows what to expect, the drop operation will work. Sorry for the confusion. I will updated the documenation accordingly.
May 29, 2008
by
burkeholland
on
Home
Can you please upload a sample application which shows how to use this control. I am not able to get it working in a C# windows forms project. I have set all the properties to true(AllowDrag, AllowDrop, AllowReorder) and have the DropType set to Copy. Nothing seems to be happening. Here is the code snipped i used DataTable dt = new DataTable(); DataColumn col1 = new DataColumn("Name"); DataColumn col2 = new DataColumn("Number"); dt.Columns.Add(col1); dt.Columns.Add(col2); dragDropGrid1.DataSource = source; DataRow row = dt.NewRow(); row[0] = "Ranjith"; row[1] = "1"; dt.Rows.Add(row); DataRow row2 = dt.NewRow(); row2[0] = "Rahul"; row2[1] = "2"; dt.Rows.Add(row2); Am i missing something here?
May 19, 2008
by
ranjith
on
Home
This control is only for Windows Forms development. It is not an ASP.NET control. I reccomend the Scriptaculous library for drag-and-drop in ASP.NET. http://script.aculo.us/
Apr 15, 2008
by
burkeholland
on
Home
I am very excited about using this control. Could you provide a real example of using it and what needs to be placed in the host page's .aspx.cs file in order to render it? Currently I am getting errors - the page is having trouble creating the control because it is looking for the AjaxToolkit.dll - I already created a ASP.NET Ajax web app so not sure what's going on here... An example would be great! Thanks...
Mar 19, 2008
by
brianhevans
on
Home
What folder in VB2005 Express does the DLL get placed into?
Mar 09, 2008
by
GregorySinger
on
Home
I had a snafu with yesterday's release, but it looks like its been cleared out. The DataBinding wasn't getting picked up as my support for object binding was overriding it. Its been fixed now and tested.
Jan 31, 2008
by
burkeholland
1-9
of
9
Comments
< Previous
1
Next >
Show
All
Comments
Updating...
© 2006-2009 Microsoft
|
About CodePlex
|
Privacy Statement
|
Terms of Use
|
Code of Conduct
|
Advertise With Us
|
Version 2009.10.27.15987