Unplanned
Last Updated: 29 Mar 2024 14:34 by Ernst
When setting ToolTipProperties.Text of a ButtonToolbarItem to a something other than an empty string, the associated command is never executed.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
    x:Class="Toolbar.MainPage"
    xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    xmlns:local="clr-namespace:Toolbar"
    xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
    x:DataType="local:MainPageViewModel">

    <ContentPage.Resources>
        <ResourceDictionary>
            <Style
                x:Key="ActionMenuButtonToolbarItemViewBaseStyle"
                ApplyToDerivedTypes="True"
                TargetType="telerik:ButtonToolbarItemView">
                <Setter Property="DisplayOptions" Value="Text" />
                <Setter Property="TextColor" Value="White" />
                <Setter Property="FontFamily" Value="{x:Static telerik:TelerikFont.Name}" />
                <Setter Property="FontSize" Value="16" />
                <Setter Property="ToolTipProperties.Text" Value="click to change count" />
            </Style>

        </ResourceDictionary>
    </ContentPage.Resources>
    <ScrollView>
        <VerticalStackLayout Padding="30,0" Spacing="25">
            <telerik:RadToolbar x:Name="toolbarButtons" AutomationId="toolbarButtons">
                <telerik:ButtonToolbarItem
                    Command="{Binding ButtonClickedCommand}"
                    Style="{StaticResource ActionMenuButtonToolbarItemViewBaseStyle}"
                    Text="{x:Static telerik:TelerikFont.IconUpOpen}" />
            </telerik:RadToolbar>
        </VerticalStackLayout>
    </ScrollView>

</ContentPage>

Completed
Last Updated: 14 Mar 2024 06:33 by Nico
Release 6.8.0
Created by: Nico
Comments: 6
Category: Toolbar
Type: Feature Request
5

I want to change the ButtonToolbarItem Tooltip to an other value then the Text-Property value.

Style ButtonToolbarItemView
<Setter Property="ToolTipProperties.Text" Value="..." /> 

and

xaml
ToolTipProperties.Text="..."

both have no effect. Tooltip keeps showing the Text value

Unplanned
Last Updated: 01 Mar 2024 12:17 by ADMIN

When setting IsEnabled through binding, it does not work on items level, it works on toolbar level. Still the Isvisible property works on items level. 

<telerik:RadToolbar x:Name="toolbar" >
    <telerik:ToggleButtonToolbarItem Text="ToggleButton" IsEnabled="{Binding IsActive, Mode=TwoWay}">
        <telerik:ToggleButtonToolbarItem.ImageSource>
            <FontImageSource Glyph="{x:Static telerik:TelerikFont.IconBold}"
                        FontFamily="{x:Static telerik:TelerikFont.Name}"
                        Size="16" />
        </telerik:ToggleButtonToolbarItem.ImageSource>
    </telerik:ToggleButtonToolbarItem>
</telerik:RadToolbar>

 

 

Unplanned
Last Updated: 18 Sep 2023 09:17 by Nico

Currently, the ButtonToolbarItemView supports the following visual states:

  • Normal
  • Disabled
  • Selected
  • PointerOver

There is no visual state to indicate that the button is currently in a Pressed state. Implementing this visual state would be beneficial when styling the toolbar item.

Duplicated
Last Updated: 20 Jul 2023 09:22 by ADMIN
The bug can be reproduced easily with a Toolbar containing many items. When the overflow area contains more items that can fit the Page, it gets clipped out and is not scrollable. This makes it impossible to click on certain items, which is a significant usability issue.
Unplanned
Last Updated: 20 Jul 2023 08:41 by ADMIN

Control: RadToolbar
OverflowMode: DropDown

If there are too many OverflowItems which doesn't fit on the screen/available space, then the List of OverflowItems should scroll.
Current behaviour: Items are truncated / invisible