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

Focus isn't working

3 Answers 81 Views
OutlookBar
This is a migrated thread and some comments may be shown as answers.
Jeff
Top achievements
Rank 1
Jeff asked on 13 Nov 2013, 05:40 PM


I have a RadOutlookBar with several textboxes within the RadOutlookBarItem.  When I run the code I am unable to tab through the text boxes.  Is there anything special I have to do to be able to tab through the controls?

 

<telerik:RadOutlookBar telerik:StyleManager.Theme="Office_Blue" DropDownDisplayMode="Visible" IsVerticalResizerVisible="False" IsMinimizable="False" Grid.Column="2">

 

<telerik:RadOutlookBarItem Header="Fields:">

<StackPanel Orientation="Vertical" VerticalAlignment="Top" HorizontalAlignment="Left" Height="auto" Focusable="True">                       

<TextBlock Margin="5,5,0,0">Name:</TextBlock>                      

 

<TextBox x:Name="newName" Text="{Binding Name, Mode=TwoWay}" HorizontalAlignment="Left" Width="320" Margin="5,0,0,0" Style="{StaticResource txtStyleLeftAligned}" MaxLength="256"/>                       

 

<TextBlock Margin="5,5,0,0">Company Name:</TextBlock>

 

<TextBox x:Name="newCompany" Text="{Binding Company, Mode=TwoWay}" HorizontalAlignment="Left" Width="320" Margin="5,0,0,0" Style="{StaticResource txtStyleLeftAligned}" MaxLength="500" />
                       

<TextBlock Margin="5,5,0,1">Email:</TextBlock>

 

<TextBox x:Name="newEmail" Text="{Binding Email, Mode=TwoWay}" HorizontalAlignment="Left" Width="320" Margin="5,0,0,0" Style="{StaticResource txtStyleLeftAligned}" MaxLength="50"/>

 

<CheckBox x:Name="newActiveYN" FlowDirection="RightToLeft" IsChecked="{Binding Active, Converter={StaticResource converter}}" Margin="0,5,11,0" HorizontalAlignment="Left" Style="{StaticResource cbxBase}" Content="Active"/>
                     

<TextBlock HorizontalAlignment="Left" Width="290" Margin="5,5,0,0">Locations:</TextBlock>                      

 

<ListBox x:Name="lbLocations" Height="100" Margin="5,5,10,0" ItemsSource="{Binding Locations, Mode=TwoWay}" HorizontalAlignment="Left" Width="320" Style="{StaticResource lbxStyleRequired}">                           

 

<ListBox.ItemTemplate>

<DataTemplate>

<CheckBox Checked="Location_Checked" Content="{Binding DbLocation.Name}" IsChecked="{Binding IsChecked}" Tag="{Binding}" Unchecked="Location_UnChecked" />

</DataTemplate>

</ListBox.ItemTemplate>

</ListBox>

<TextBlock HorizontalAlignment="Left" Margin="5,5,0,0">Services:</TextBlock>

<ListBox x:Name="lbContactServices" Height="150" Margin="5,5,10,0" ItemsSource="{Binding Services, Mode=TwoWay}" HorizontalAlignment="Left" Width="320" IsEnabled="False">

<ListBox.ItemTemplate>

<DataTemplate>

<CheckBox IsChecked="{Binding IsChecked}" Content="{Binding DbService.Name}"/>

</DataTemplate>

</ListBox.ItemTemplate>

</ListBox>

 

<StackPanel Orientation="Horizontal" Margin="0,0,0,0">

<Button Content="New" Style="{StaticResource btnBase}" Margin="5,5,0,0" Width="100" Command="{x:Static NewBrokerButtonCommand}"/>

 

<Button Content="Save" Style="{StaticResource btnBase}" Margin="5,5,0,0" Width="100" Command="{x:Static UpdateButtonCommand}"/>                    

 

</StackPanel>

</StackPanel>

</telerik:RadOutlookBarItem>

 

</telerik:RadOutlookBar>

3 Answers, 1 is accepted

Sort by
0
Kiril Vandov
Telerik team
answered on 18 Nov 2013, 04:09 PM
Hello Jeff,

Unfortunately this is a known bug in our RadOutlookBar control. You can vote and track its progress in out PITS system.

Please excuse us for the inconvenience caused.

Kind regards,
Kiril Vandov
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WPF.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
0
Yann
Top achievements
Rank 1
answered on 27 Jan 2014, 04:17 PM
Hello,

Link of PITS system does not work. Bug is Fixed?

Kind regards,
Yann
0
Kiril Vandov
Telerik team
answered on 30 Jan 2014, 03:20 PM
Hello Yann,

We have changed out PITS system and now we are using a new Feedback portal, that is why the items from the pits system are not displayed. As for your question, this bug still exists in the control and you can continue to track your item here. However by simply setting the KeyboardNavigation.TabNavigation="Cycle" to the RadOutlookBar will fix your problem.

I hope this information helps.

Kind regards,
Kiril Vandov
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WPF.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
OutlookBar
Asked by
Jeff
Top achievements
Rank 1
Answers by
Kiril Vandov
Telerik team
Yann
Top achievements
Rank 1
Share this question
or