This question is locked. New answers and comments are not allowed.
Hi..
I am trying to copy few columns from excel to a column in Sliverlight girdview. I am not able to do achieve this. I am using Sliverlight 3 and VS 2008 SP1 on windows 7.
I have tried setting column values by using some thing like below
private void Grid_RowLoaded(object sender, Telerik.Windows.Controls.GridView.RowLoadedEventArgs e)
{
if (e.Row.Item != null)
{
for (int i = 0; i < e.Row.Cells.Count; i++)
{
e.Row.Cells[3].Column.IsReadOnly = false;
}
}
}
But i am not able to get all columns in edit mode to copy.
Does any body has any idea doing this. Please help me.
Thanks in advance.
Nagasai
I am trying to copy few columns from excel to a column in Sliverlight girdview. I am not able to do achieve this. I am using Sliverlight 3 and VS 2008 SP1 on windows 7.
I have tried setting column values by using some thing like below
private void Grid_RowLoaded(object sender, Telerik.Windows.Controls.GridView.RowLoadedEventArgs e)
{
if (e.Row.Item != null)
{
for (int i = 0; i < e.Row.Cells.Count; i++)
{
e.Row.Cells[3].Column.IsReadOnly = false;
}
}
}
But i am not able to get all columns in edit mode to copy.
Does any body has any idea doing this. Please help me.
Thanks in advance.
Nagasai