Dear All,
I have two RadGridView in WindowsForms namely radGridView1 and radGridView2.
I have data in radGridView1 and also i need to drag and drop radGridView1 row to radGridView2 wise single row and multi row.
And also no data in radGridView2.
My coding are mentioned below.
private
void
Form1_Load(
object
sender, EventArgs e)
{
DataTable dt =
new
DataTable();
dt = c.getdata();
radGridView1.DataSource = dt;
}
public
DataTable getdata()
{
con.Open();
cmd =
new
SqlCommand(
"select * from employee"
, con);
sda =
new
SqlDataAdapter(cmd);
sda.Fill(dt);
con.Close();
return
dt;
}
How to implement this?
Thanks in Advance..!