The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Currently, I am working on scheduler in angular. I need to know how can I stop or disabling one the functionality.
action: ( left mouse click + holding + moving mouse)
The View moves to left or right. I need to stop it. it suppose to be some api to stop the default. please advise
<ejs-schedule></ejs-schedule>
RMRuksar Moosa Sait Syncfusion Team April 7, 2022 08:24 AM UTC
Hi
Kamran,
We
have prepared a sample to disable the left and right swipe actions by setting
the request type as “dateNavigate” and type of event as “touchmove” and bind it
to onActionBegin method like the below code snippet.
public onActionBegin(args: ActionEventArgs): void {
// To disable the left and right swipe action
if (args.requestType == 'dateNavigate' && args.event.type == 'touchmove') {