This question is locked. New answers and comments are not allowed.
Below is some partial code that defines a couple of columns and a checkbox in the grid, how can I loop through the grid and find what rows have checkboxes that are checked? I tried using the Items collection and IndexOf(object) which gave m the row but now I can't figure out what to do with that? Basically the user can look at orders, select 1 or more and then click submit to send them on their way, or at least that is the idea if I could tell which ones were submitted.
Thanks
Bill
<my:RadGridView.Columns> <my:GridViewColumn Header="Mark to submit"> <my:GridViewColumn.CellTemplate> <DataTemplate> <CheckBox x:Name="MarkToSubmit"></CheckBox> </DataTemplate> </my:GridViewColumn.CellTemplate> </my:GridViewColumn> <my:GridViewDataColumn DataMemberBinding="{Binding TradingPartnerID}" Header="Trading Partner" UniqueName="TradingPartnerID" ></my:GridViewDataColumn> <my:GridViewDataColumn DataMemberBinding="{Binding AccountNumber}" Header="Account #" UniqueName="AccountNumber" ></my:GridViewDataColumn>