Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WPF > Scheduler > Display Cell Time

Not answered Display Cell Time

Feed from this thread
  • Michele avatar

    Posted on Nov 23, 2011 (permalink)

    Hi,
    I'm using the "old" RadScheduler and I'd need to show to the user the "Time (Hour:Minute)" of the cell (without appointment) corresponding with mouse position.
    I mean: during mousemove on the scheduler I'd like do display a tooltip (or something else) showing the corresponding Time; because when the mouse is far from the left side of the scheduler it's not intuitive to understand the time slot that I've to select to insert .

    thank's in advance
    Michele

    Reply

  • Rosi Rosi admin's avatar

    Posted on Nov 25, 2011 (permalink)

    Hi Michele,

    You can use the MouseOverHighlightStyle property and customize the mouse over style like this:
    <Style x:Key="MouseOverHighlightStyle" TargetType="telerik:HighlightItem">
            <Setter Property="Background" Value="Black" />
            <Setter Property="BorderBrush" Value="Black" />
            <Setter Property="BorderThickness" Value="1" />
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate>
                        <Grid>
            <TextBlock x:Name="StartTextBox" Margin="4 2" Foreground="Black" HorizontalAlignment="Left" VerticalAlignment="Top" Text="{Binding ActualStart,StringFormat=t}" />
                         
                                <TextBlock x:Name="EndTextBox" Margin="4 2" Foreground="Black" HorizontalAlignment="Right" VerticalAlignment="Bottom" Text="{Binding ActualEnd,StringFormat=t}" />
             
    </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>

    <telerik:RadScheduleView MouseOverHighlightStyle="{StaticResource MouseOverHighlightStyle}" ../>

    Regards,
    Rosi
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

    Reply

  • Michele avatar

    Posted on Nov 25, 2011 (permalink)

    Hi. Rosi,
    the problem is that i'm using radScheduler and non radScheduleView, and I do not find MouseOverHighlightStyle in it
    Is there some other property to set with such a style?
    thanks a lot
    Michele

    Reply

  • Rosi Rosi admin's avatar

    Posted on Nov 28, 2011 (permalink)

    Hi Michele,

    This is not possible with RadScheduler. I strongly recommend you using RadScheduleView instead of RadScheduler control. It has more feature and better performance. More about differences between both controls you can read here.

    All the best,
    Rosi
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WPF > Scheduler > Display Cell Time
Related resources for "Display Cell Time"

WPF Scheduler Features  |  Documentation  |  Demos  |  Telerik TV  |  Self-Paced Trainer  ]