How do you implement the Drag and Drop feature in a UltraWeb Grid?
I remember a demo page with this functionality but I am unable to find it again :)
It was an example of moving pieces of a picture around a grid like a puzzle probably with in a webdatagrid
Go to the link to get the file.
Hello, I get the same error below when trying the sample. Any luck getting this sample to work?
'CustomClientAnimation' does not contain a definition for 'UltraWebGrid1' and no extension method 'UltraWebGrid1' accepting a first argument of type 'CustomClientAnimation' could be found (are you missing a using directive or an assembly reference?)
I am new to Drag and Drop, does anyone have a good example of Drag and Drop between two UltraWebGrids?
I can not get your download to work... it keeps giving me the error below:
"I put <div tags around "everything" fields, rows, columns the whole nine yards and I then tell the DaD framework that they are valid targets for dropping. On Drop I use ajax and loop through the grid information saving the data layout, object types etc. to the database. (by userid) "
Can you supply code of how you do this?
Also, our grid is hierarchical (3 bands), and I've tried to use the example for this with some luck but " 'Node' is null or not an object" after a few moves, and then all is bad....
Thanks
Could someone give a better example of what they are looking for?
I am doing this right now and do not have a problem with this, so I am trying to understand what it is you guys are looking for?
Here is what I do (and yes I use the new release drag/drop framework) in a form builder.
I put <div tags around "everything" fields, rows, columns the whole nine yards and I then tell the DaD framework that they are valid targets for dropping. On Drop I use ajax and loop through the grid information saving the data layout, object types etc. to the database. (by userid)
Then when it loads (grid/row init) I rebuild the information.
I do this not only for the grid but for adding comboboxes,text fields, radios etc. to a form (including tabs).
So if someone can explain a little better what they want I can just throw up some sample code on how i do it.
Hello czmelton,
I too have been looking for a solution for persisting "state" in the UltraWebGrid between user sessions.
My UltraWebGrid implementations are very user "configurable".
Including:
Moving column order
Resizing column width
Resizing row height
Sorting
I would like to be able to return the UltraWebGrid to the user exactly how they left it.
In the past I used the LoadLayout and SaveLayout methods to write the "state" (ie layout) to a xml string for an individual user and then write the string to a database. Then when the user started another session, the app would simply load the "state" (ie layout) from the xml string in the database. It worked fairly well, but unfortunately, it has been deprecated.
I requested the feature be reimplemented but have not seen it to date.
Thanks,Jeff