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

RadGrid - "Select All" from All Pages

1 Answer 492 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Daniel
Top achievements
Rank 1
Daniel asked on 29 May 2014, 11:09 AM
Hello,

I'm currently working on a project with RadGrid.

In my grid I have the first column GridClientSelectColumn (Checkbox).

VB.NET Code:
'add check box column
            Dim objGridClientSelectColumn As GridClientSelectColumn = New GridClientSelectColumn()
            objGridClientSelectColumn.UniqueName = "UniqMainGrid"
            RadGrid1.MasterTableView.Columns.Add(objGridClientSelectColumn)


When I click "Select all", all the rows on the same page are selected.

What I need is that when I clicked "Select All / Select None" it will "Select / Un-select"
all rows in all pages.


Thanks in advance,

Daniel.



1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 29 May 2014, 12:21 PM
Hi Daniel,

I'm afraid your requirement cannot be achieved since RadGrid have in memory only current page items. If you need all items you should disable paging and select all rows. However if you have a lot of records to be displayed there will be performance penalties.

Thanks,
Princy
Tags
Grid
Asked by
Daniel
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or