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

ToolTip Delay Timeout

1 Answer 58 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Steven
Top achievements
Rank 1
Steven asked on 03 Oct 2012, 04:29 AM
Where can I change the timeout setting for a tooltip on a textbox that is within a grid?

Here is my XAML for the data column.

<telerik:GridViewDataColumn Header="TPR Price" HeaderTextAlignment="Center" MinWidth="50">
    <telerik:GridViewDataColumn.CellTemplate>
        <DataTemplate>
            <Grid DataContext="{Binding TPRPrice}">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto"></ColumnDefinition>
                    <ColumnDefinition Width="Auto"></ColumnDefinition>
                    <ColumnDefinition Width="*"></ColumnDefinition>
                </Grid.ColumnDefinitions>
                <Image Source="/PriceBook;component/Images/Pencil.png" Grid.Column="0"
                    Visibility="{Binding IsPriceChanged, Converter={StaticResource VisibilityConverter}}" />
                <Image Source="/PriceBook;component/Images/Override.png" Grid.Column="1"
                    Visibility="{Binding IsPriceOverride, Converter={StaticResource VisibilityConverter}}" />
                <TextBox Grid.Column="2" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch"
                        Text="{Binding Current, Mode=TwoWay, Converter={StaticResource PriceConverter}}"
                        BorderThickness="0" Background="Transparent" Foreground="{Binding Foreground}"
                        ToolTipService.ToolTip="{Binding ToolTipText}" TextAlignment="Right"></TextBox>
            </Grid>
        </DataTemplate>
    </telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>

1 Answer, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 03 Oct 2012, 05:29 AM
Hi,

 This is not something you can control from the grid - it is related to the ToolTipService itself. 

All the best,
Vlad
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Tags
General Discussions
Asked by
Steven
Top achievements
Rank 1
Answers by
Vlad
Telerik team
Share this question
or