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

TextInput Event Broken

2 Answers 42 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
stevea
Top achievements
Rank 1
stevea asked on 21 May 2014, 06:43 PM

I am using a  combo in editable mode and need to catch the  textinput event.

This fails to bind to the event.

               <telerik:RadComboBox x:Name="Text1" HorizontalAlignment="Left" Grid.Row="0" Height="23" Margin="286,72,0,0" VerticalAlignment="Top" Width="217" SelectionChanged="Text1_SelectionChanged" TextInput="Text1_TextInput" IsEditable="True" />


I have to Physically FORCE and event handler.   Why is this not working correctly ?
this.Text1.AddHandler(Control.TextInputEvent, new TextCompositionEventHandler(this.Text1_TextInput), true);

2 Answers, 1 is accepted

Sort by
0
stevea
Top achievements
Rank 1
answered on 21 May 2014, 07:22 PM
I have decided to use the KeyUp event. It is working for my needs.
0
Kalin
Telerik team
answered on 23 May 2014, 07:05 AM
Hello Stevea,

I'm glad you have managed to achieve the desired. If you have any other questions, do not hesitate to contact us.

Regards,
Kalin
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
ComboBox
Asked by
stevea
Top achievements
Rank 1
Answers by
stevea
Top achievements
Rank 1
Kalin
Telerik team
Share this question
or