Dear Syncfusion team,
I was wondering whether it is possible to show other elements in the line view. For instance we are working on a planning app, and for a given date in the future we would like to show the planned item delivery which will need to show the address, name of the buyer and the number of items. Each event will be represented as a button, such that once pressed a new view is loaded.
I also have another question regarding a button. In inlineview data template i added a button, but the button click event is not triggered. Please let me know if I need to post this in a separate thread.
thanks in advance.
kr,
O
|
private void calendar_InlineItemTapped(object sender, Syncfusion.SfCalendar.XForms.InlineItemTappedEventArgs e)
{
var appointment = e.InlineEvent;
DisplayAlert("","Subject: "+ appointment.Subject.ToString()+ "\r\n" + "StartTime: "+ appointment.StartTime.ToLongDateString() + "\r\n" + "EndTime: "+ appointment.EndTime.ToLongDateString() , "ok");
} |
hi SaiGanesh,
many thanks for your reply. i am not sure I understand, or if was clear. What I was trying to ask is whether in the inlineview view for appointment I can show other data elements, rather than just subject, starttime, endtime?
For instance let's say we have a delivery planned in one week. In the inlineview I would like to show the number of items which are to be delivered as well. thanks in advnace.
clear on the button click event.
Regards,
Orkhan