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

Editable DataFormComboBoxField

1 Answer 79 Views
DataForm
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 25 Jul 2011, 12:46 PM
Hello,

How can i make the DataFormComboBoxField editable (also with autocomplete) ?

1 Answer, 1 is accepted

Sort by
0
Accepted
Pavel Pavlov
Telerik team
answered on 28 Jul 2011, 09:40 AM
Hello John,

You can set this by style. Something like :
<telerik:RadDataForm x:Name="RadDataForm1" AutoEdit="True" >
            <telerik:RadDataForm.Resources>
                <Style TargetType="telerik:RadComboBox">
                    <Setter Property="IsEditable" Value="True" />
                </Style>
            </telerik:RadDataForm.Resources>
        </telerik:RadDataForm>

For your convenience I am attaching a runnable sample application demonstrating the above mentioned approach in action.

All the best,
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!

Tags
DataForm
Asked by
John
Top achievements
Rank 1
Answers by
Pavel Pavlov
Telerik team
Share this question
or