Hi,
I am trying to add unbounded row such as ValueRow into my footer, but some how I cannot access the cell of my value row.
Please advice.
Code Snippet:
ValueRow r = new ValueRow();
r.Cells[0].Value = “test”; //[0] is string
grid.FooterRows.Add(r);
//this code breaks;
ValueRow r = new ValueRow();
ValueCell c = new ValueCell();
c.Value = “test”;
r.Cells.Add(c);
grid.FooterRows.Add(r);
//this code also breaks;
FYI: i tried Textrow and it works but thats not what i want.
Can anyone tell me how by using ValueRow or others?
Thanks in Advance.
JK
Imported from legacy forums. Posted by jkhuraijam (had 1871 views)