This is a migrated thread and some comments may be shown as answers.

Problem with GridClientSelectColumn in Radtab

2 Answers 44 Views
Grid
This is a migrated thread and some comments may be shown as answers.
chris
Top achievements
Rank 1
chris asked on 03 Feb 2009, 05:04 AM
I have some tabs set up to open different RadGrid. In The RadGrid i have a GridClientSelectColumn. The check boxes show up but the header box is not checking all of the sub boxes. Also when i submit the checkboxes they are not passing so it is effecting both things by having it in a radtab. I have this set up locally but i can put it online if you want to see it.

Thanks
 

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 04 Feb 2009, 11:03 AM
Hi Chris,

I tried the scenario and its working fine in my end. And you can try the below code snippets for getting the selectedItems when submitting the page.

CS:
protected void Button1_Click(object sender, EventArgs e) 
    foreach (GridDataItem item in RadGrid1.SelectedItems) 
    { 
        string str= item["OrderID"].Text; // Value from Selected Row 
    } 

Thanks,
Shinu.
0
chris
Top achievements
Rank 1
answered on 04 Feb 2009, 02:09 PM
Thanks but that is what i have. The check all button is not even working. I submitted a ticket to support with this and another radgrid problem that i am running into when it is in a tab to support so i will wait to see what they have to say. Thanks for your help though.

Tags
Grid
Asked by
chris
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
chris
Top achievements
Rank 1
Share this question
or