G
GaryDean
It seems every time I try to use the GridView to do what I used to do with
the DataGrid I run into differences that make me want to got back to the
datagrid. for instance...
the DataGrid ItemDataBound event was a very valuable event to customize
binding. We could refer to the item at being bound by referencing
e.item.whatever.
Now with the GridView there is a "DataBound" event but item is no longer a
property! In fact there are no prooperties in the event arguments so we
cannot say e.item. there are just four methods (Equals,GetHashCode,GetType,
and ToString). So how can we reference an item? the documentation is
silent on this - unlike the 1.1 datagrid documentation.
Are there any discussions anywhere on how to do things with the Gridview
that used to be so easy with the DataGrid?
(one of our developers posted on this issue and someone responded that we
should use e.row but there is no row property.)
the DataGrid I run into differences that make me want to got back to the
datagrid. for instance...
the DataGrid ItemDataBound event was a very valuable event to customize
binding. We could refer to the item at being bound by referencing
e.item.whatever.
Now with the GridView there is a "DataBound" event but item is no longer a
property! In fact there are no prooperties in the event arguments so we
cannot say e.item. there are just four methods (Equals,GetHashCode,GetType,
and ToString). So how can we reference an item? the documentation is
silent on this - unlike the 1.1 datagrid documentation.
Are there any discussions anywhere on how to do things with the Gridview
that used to be so easy with the DataGrid?
(one of our developers posted on this issue and someone responded that we
should use e.row but there is no row property.)