How to pass multiple rows from one gridview to another
gridview after clicking the checkbox.
Answer / srividhya
int i;
DataTable ObjDT = new DataTable();
DataColumn objcol1 = new DataColumn();
objcol1.DataType =
System.Type.GetType("System.Int16");
objcol1.ColumnName = "Category_id";
ObjDT.Columns.Add(objcol1);
DataColumn objcol2 = new DataColumn();
objcol2.DataType =
System.Type.GetType("System.String");
objcol2.ColumnName = "Category_Name";
ObjDT.Columns.Add(objcol2);
DataColumn objcol3 = new DataColumn();
objcol3.DataType =
System.Type.GetType("System.String");
objcol3.ColumnName = "Description";
ObjDT.Columns.Add(objcol3);
DataColumn objcol4 = new DataColumn();
objcol4.DataType =
System.Type.GetType("System.String");
objcol4.ColumnName = "Messages";
ObjDT.Columns.Add(objcol4);
for (i = 0; i < radGridView1.Rows.Count; i++)
{
if
(radGridView1.Rows[i].Cells[0].Value.ToString().ToUpper() ==
"TRUE")
{
DataRow ObjRow = ObjDT.NewRow();
ObjRow["Category_Id"] =
radGridView1.Rows[i].Cells[1].Value;
ObjRow["Category_Name"] =
radGridView1.Rows[i].Cells[2].Value;
ObjRow["Description"] =
radGridView1.Rows[i].Cells[3].Value;
ObjRow["Messages"] =
radGridView1.Rows[i].Cells[4].Value;
ObjDT.Rows.Add(ObjRow);
}
}
radGridView2.DataSource = ObjDT;
foreach (GridViewDataColumn column in
radGridView2.Columns)
{
column.BestFit();
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Write a program to count the number of characters, number of words, number of line in file.
. Write a program to print the following outputs using for loops $ $ $ $ $ $ $ $ $ $ $ $ $ $ $
Code for Searching for Multiple Matches with the MatchCollection Class?
write a Program to copy the string using switch case.
program to reverse the order of digits in a given number of any length.
How to use ASP.NET 2.0's TreeView to Display Hierarchical Data?
Write a program to convert postfix expression to infix expression.
Coding for Manipulate XML File Data Using C#?
working with arrays
Write a program. there are 1..n numbers placed in an array in random fashion with one integer missing. find the missing number.
Write a program to input an integer and - display the reverse - display the sum of each digit - should include logic that considers the input number as any number of digits long
I am developing a web application using google map api.I want to update the map inside the div control within update panel. I got other controls updated but map doesn't get updated.I do not not want to update map whenever unnecessary controls are fired at server side.How could it be achieved?