Drag Rows from one GridView to another with different number of columns and save in Database using jQuery AJAX in ASP.Net
Is it possible to drag a gridview row with 10 columns to another gridview with few common columns as parent and not having same number of columns?
Consider a GridSrc with 10 column. (s1, s2, s3,....s10)
Consider a GridDest with 7 column. (d1, d2, d3,....d7)
I want to drag a row from GridSrc to GridDest.
Columns s1 & s2 will act as ID for GridSrc.
Columns d1 & d2 will act as ID for GridDest.
ID fields act as common db columns for both grids.