View Issue Details

IDProjectCategoryView StatusLast Update
0004892NoesisGUIUnrealpublic2026-03-12 12:17
Reporterttermeer-rcg Assigned Tosfernandez  
PrioritynormalSeverityminor 
Status assignedResolutionopen 
Product Version3.2.12 
Target Version3.2.13 
Summary0004892: Unable to navigate to focusable elements
Description

When an element is set to Focusable="True", it should receive keyboard and gamepad navigation - like in WPF.

The code below allows in WPF to navigate out of the list into the two textblock that are focusable.

<StackPanel KeyboardNavigation.DirectionalNavigation="Contained">
    <StackPanel.Resources>
        <Style x:Key="FocusableText" TargetType="TextBlock">
            <Setter Property="Focusable" Value="True" />
            <Style.Triggers>
                <Trigger Property="IsKeyboardFocused" Value="True">
                    <Setter Property="Foreground" Value="Red" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </StackPanel.Resources>

    <TextBlock Text="Element 1" Style="{StaticResource FocusableText}" />
    <TextBlock Text="Element 2" Style="{StaticResource FocusableText}" />
    <ListBox x:Name="MyList" KeyboardNavigation.DirectionalNavigation="Continue">
        <ListBoxItem>
            <TextBlock Text="List 1" />
        </ListBoxItem>
        <ListBoxItem>
            <TextBlock Text="List 2" />
        </ListBoxItem>
        <ListBoxItem>
            <TextBlock Text="List 3" />
        </ListBoxItem>
    </ListBox>
    <b:Interaction.Triggers>
        <b:EventTrigger EventName="Loaded">
            <noesis:SetFocusAction TargetName="MyList"/>
        </b:EventTrigger>
    </b:Interaction.Triggers>
</StackPanel>
PlatformAny

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2026-03-12 10:56 ttermeer-rcg New Issue
2026-03-12 10:56 ttermeer-rcg Description Updated
2026-03-12 12:16 jsantos Assigned To => sfernandez
2026-03-12 12:16 jsantos Status new => assigned
2026-03-12 12:16 jsantos Target Version => 3.2.13
2026-03-12 12:17 jsantos Description Updated
2026-03-12 12:17 jsantos Description Updated