6 Answers, 1 is accepted
0
Hi Becky,
Thank you for bringing this issue to our attention. Currently there is no way to show the scroll bars. We logged the issue in our bug tracker. We hope that the fix will be available the next week with the official Q3 Release.
Your Telerik points have been updated for reporting this problem.
As a workaround, you can change the size of the Column Chooser form by using the following code:
Regards,
Evtim
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Thank you for bringing this issue to our attention. Currently there is no way to show the scroll bars. We logged the issue in our bug tracker. We hope that the fix will be available the next week with the official Q3 Release.
Your Telerik points have been updated for reporting this problem.
As a workaround, you can change the size of the Column Chooser form by using the following code:
private void ShowColumnChooser(void) | |
{ | |
GridTableElement gte = this.radGridView1.GridElement as GridTableElement; | |
ColumnChooserForm form = null; | |
if (gte != null && gte.TableBodyElement != null) | |
{ | |
form = gte.TableBodyElement.ColumnChooserForm; | |
} | |
if (form != null) | |
{ | |
form.Size = new Size(240, 600); | |
form.Show(); | |
} | |
} |
Regards,
Evtim
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

Bexm
Top achievements
Rank 1
answered on 10 Dec 2007, 02:38 PM
Oh, ok.. I will have to wait until next week then as they screen isn't big enough to put the column chooser to its full height, because as mentioned in my other post, I have about 70 columns to choose from!
0

Bexm
Top achievements
Rank 1
answered on 19 Dec 2007, 03:29 PM
Is this in the new release?
0
Hi Becky,
Yes, this is the new release. Give it a spin and tell us what you think. The RadGridView is undergoing major refactoring and will be available further on.
If you need any further assistance, please contact us.
Greetings,
Evtim
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Yes, this is the new release. Give it a spin and tell us what you think. The RadGridView is undergoing major refactoring and will be available further on.
If you need any further assistance, please contact us.
Greetings,
Evtim
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0

Lily
Top achievements
Rank 1
answered on 09 Feb 2011, 12:13 AM
Hi,
I tried to use your code, but I've got an error:
I tried to use your code, but I've got an error:
ColumnChooserForm - type or namespace cannot be found. No problems for other Telerik controls. What namespace am I missing?
TableBodyElement
does not exist in GridTableElement also. How can I acecss Column Chooser?
Thank you
Lily
0
Hi Lily,
You can access the column chooser by using the ColumnChooser property of RadGridView:
I hope this helps.
Best wishes,
Svett
the Telerik team
You can access the column chooser by using the ColumnChooser property of RadGridView:
this
.radGridView1.ColumnChooser.Show();
I hope this helps.
Best wishes,
Svett
the Telerik team