5 Answers, 1 is accepted
0
Hi ,
I am afraid I do not understand your question. Do you need to hide/show the combo column, or you need to toggle the drop-down state ?
Please give some more details /
Best wishes,
Pavel Pavlov
the Telerik team
I am afraid I do not understand your question. Do you need to hide/show the combo column, or you need to toggle the drop-down state ?
Please give some more details /
Best wishes,
Pavel Pavlov
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0

Freeky
Top achievements
Rank 1
answered on 05 Jul 2011, 02:03 PM
Just to toggle the drop-down state
Thanks
Thanks
0
Hi ,
The property of RadComboBox which controls the drop down state is "IsDropDownOpen"
You may set it in a Style , using the EditorStyle property of the GridViewComboBox column.
The style of course should target RadComboBox.
Best wishes,
Pavel Pavlov
the Telerik team
The property of RadComboBox which controls the drop down state is "IsDropDownOpen"
You may set it in a Style , using the EditorStyle property of the GridViewComboBox column.
The style of course should target RadComboBox.
Best wishes,
Pavel Pavlov
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!
0

Freeky
Top achievements
Rank 1
answered on 05 Jul 2011, 03:41 PM
Hi Pavel,
Thanks for your quick answer; However, it is not working.
here is my code :
<k:EditGridView.Columns>
<k:GridViewComboBoxColumn Header="XXX"
ItemsSource="{Binding Type}"
DataMemberBinding="{Binding TypeSelected}"
EditTriggers="CellClick" />
<k:GridViewComboBoxColumn.EditorStyle>
<Style TargetType="telerik.RadComboBox">
<Setter Property="OpenDropDownOnFocus" Value="true" />
</Style>
</k:GridViewComboBoxColumn.EditorStyle>
</k:EditGridView.Columns>
I am having the following error: the attachable propertry EditorStyle was not found in GridViewComboBoxColumn.
PS: keep in mind my control inherit telerik GridViewComboBoxColumn
Regards
Thanks for your quick answer; However, it is not working.
here is my code :
<k:EditGridView.Columns>
<k:GridViewComboBoxColumn Header="XXX"
ItemsSource="{Binding Type}"
DataMemberBinding="{Binding TypeSelected}"
EditTriggers="CellClick" />
<k:GridViewComboBoxColumn.EditorStyle>
<Style TargetType="telerik.RadComboBox">
<Setter Property="OpenDropDownOnFocus" Value="true" />
</Style>
</k:GridViewComboBoxColumn.EditorStyle>
</k:EditGridView.Columns>
I am having the following error: the attachable propertry EditorStyle was not found in GridViewComboBoxColumn.
PS: keep in mind my control inherit telerik GridViewComboBoxColumn
Regards
0

Freeky
Top achievements
Rank 1
answered on 05 Jul 2011, 03:53 PM
Thank Pavlov - I solved my problem
best regards
best regards