what is the diffrence between item,record and row?
and
what is deffrence between current and selected?
Thanks
virendra
1 Answer, 1 is accepted
0
Milan
Telerik team
answered on 01 May 2009, 12:23 PM
Hello Virendra,
A row is a visual representation of a data object. For example, if you bind RadGridView to a list of strings every string in the list will be represented by a row (usually the GridViewRow) UI object. The individual strings in the list are also called data items or just items.
So what are records? The records are wrappers around the data source items - for every data item there is a corresponding data record. Records allow us to store additional info about the original data items. For instance, our DataRecord class has a property IsSelected which determines if its underlying data is selected. Also, the our DataRecord has a property called Data that returns the actual data element.