V
Vishal
Hello,
I have created a nested datagrid with the help of this
article: http://www.standardio.org/article.aspx?id=155.
Now I need to edit the nested datagrid. I thought that it
was the same task as editing a single datagrid, but it
doesnt seem so. I created a simple edit handler for my
nested datagrid and inserted the following code:
Sub dgNested_Edit(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
dgNested.EditItemIndex = e.Item.ItemIndex
end sub
However I get the error that dgNested is not declared,
although it is. I guess I have to use somehow findcontrol
or anything else to get this working. Anybody has any
experience with editing nested Datagrids?
Thanks
I have created a nested datagrid with the help of this
article: http://www.standardio.org/article.aspx?id=155.
Now I need to edit the nested datagrid. I thought that it
was the same task as editing a single datagrid, but it
doesnt seem so. I created a simple edit handler for my
nested datagrid and inserted the following code:
Sub dgNested_Edit(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
dgNested.EditItemIndex = e.Item.ItemIndex
end sub
However I get the error that dgNested is not declared,
although it is. I guess I have to use somehow findcontrol
or anything else to get this working. Anybody has any
experience with editing nested Datagrids?
Thanks