In the following code i have specified DataKeyNames as "id , abbrev" but while binding to the grid I dont need to show the "id" column.
In this case, how can I fetch the "id" key column using client side API.
<MasterTableView DataKeyNames="id,abbrev" ClientDataKeyNames="id,abbrev">
<Columns>
<telerik:GridBoundColumn DataField="Abbrev" HeaderText="Abbreviation" />
<telerik:GridBoundColumn DataField="MyName" HeaderText="My Name"/>
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>