I am having datagrid and data loaded from the SQL. In that datagrid, I m having many colums along with mobile number and checkboxes with select all checkbox. If I click on that select all checkbox, all the mobile numbers should be displayed on another datagrid.
Can anyone suggest me solution?

Akhil GargPosted Jan 20, 2015, 9:19 AM
When ever you are checking the all checkbox then raise a delegate command you can populate the another grid from that function.
Bind that 2nd datagrid with a itemsource say ListMobNo when you click on all checkbox and calling CheckAllfunction() .In this you can Populate the ListMobNo from the main list which you have binded to first datagrid.