Hello,
I want to store a value which is common to the entire row? How do i do it? Or do I need to keep a hidden column to do it? Please let me know. I didnt see much information on this in the documentation.
If you are referring to the primary key, then use the DataKeyNames property to specify the field (or fields)
that represent the primary key of the data source.
The data key names/values are stored in the ViewState so they
are available at any moment after grid have been data-bound, after postbacks,
etc.
And retrieve the DataKeyValues using (GetDataKeyValue method) from the owner GridTableView with the corresponding item ItemIndex and keyName.