Hi,
When adding an event using an iPad we are seeing a random event created.
We have our own customised event UI so where is this coming from?
Thanks for the reply. This is only seen when requesting the mobile version on Safari (we don't see this on any other browser) so not sure this is correct?
Anyway we don't ever want to see it, how do we stop it happening?
Thanks,
Alex
|
<SfSchedule @ref="ScheduleObj" TValue="AppointmentData" Width="100%" Height="650px" @bind-SelectedDate="@CurrentDate" @bind-CurrentView="@CurrentView">
<ScheduleEvents TValue="AppointmentData" OnCellClick="OnCellClick"></ScheduleEvents> </SfSchedule> @code{ public async Task OnCellClick(CellClickEventArgs args)
{ args.Cancel = true; } } |
Hi,
How does this help? We want to add appointments on cell click, we just don't want to see this random event created or displayed.
As already mentioned we only see this issue on iPad which is unfortunately what 90% of our users are using, as such we need a fix for this asap.
Alex
|
<style>
.e-schedule.e-device .e-new-event { display: none; } </style> |
Hi,
As already mentioned, we need to create events by clicking the scheduler control, we don't want to use a plus icon in the the toolbar? The issue is when selecting a resource to create an event on the iPad this random event is created.
Surely this is an absolute basic requirement of being able to create an appointment? The Scheduler control is proving to be very unreliable which is giving us great concern on using Syncfusion controls on any new projects.
We need a fix for this asap, as it's causing a huge issue to our clients.
Thanks,
Alex
Hi, we just don't want the additional marker shown - makes absolutely no sense to have it if we already have an event created.
Have to say the quality of the Scheduler component is very poor, we are finding new issues every day.
Alex
|
public async void OnCellClick(CellClickEventArgs args)
{
args.Cancel = true; //to prevent default action
await ScheduleObj.OpenEditorAsync(args, CurrentAction.Add); //to open editor window
} |