Hi,
I am using SfSchedule control in Windows 8 app.
A class has property notes and i would like to see it in AppointmentTooltip.
But binding to this property does not work.
Subject, Start date time and Due date time do work.
Here is the code.
<syncfusion:SfSchedule x:Name="schedule" Grid.Row="1" Margin="0,-30,0,0"
ShowNonWorkingHours="True" IsHighLightWorkingHours="True"
ScheduleType="Week"
AppointmentTooltipVisibility="Visible"
TimeInterval="ThirtyMin">
<syncfusion:SfSchedule.AppointmentMapping>
<syncfusion:ScheduleAppointmentMapping
AppointmentBackgroundMapping="CategoryColor"
AllDayMapping="IsAllDay"
SubjectMapping="Title"
StartTimeMapping="StartDateTimeValue"
EndTimeMapping="DueDateTimeValue">
</syncfusion:ScheduleAppointmentMapping>
</syncfusion:SfSchedule.AppointmentMapping>
<syncfusion:SfSchedule.AppointmentTooltipTemplate>
<DataTemplate>
<Border BorderBrush="Black" BorderThickness="1">
<Grid Background="Bisque">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock FontSize="16" Foreground="White" VerticalAlignment="Center" Padding="10 0" Text="{Binding Subject}" Grid.Row="0"/>
<TextBlock FontSize="16" FontWeight="Bold" FontStyle="Italic" Padding="10 0" Text="Notes: " Grid.Row="1"/>
<TextBlock FontSize="16" Margin="20 5" Text="{Binding Note}" Grid.Row="2"/>
</Grid>
</Border>
</DataTemplate>
</syncfusion:SfSchedule.AppointmentTooltipTemplate>
</syncfusion:SfSchedule>
Awaiting reply,
Thanks,
Vinod