Questions about the schedule

Hi, I'm using Asp.Net Core with bootstrap and I have some questions about the Schedule.

1. I have a carousel with 3 column and each one have a Schedule with a Day view. When I click for the first time at previous/next day button they disapear. Is this a bug? (I attached a video with this action/behavior)

2. I want to disable the one click cell event to add a Appointment, I want that nothing happen. How can I do this?

3. Are there any way to chance the double click cell event? I want to go to a new page and not show the popup Appointment register form

Attachment: viddeo_c4ec508c.rar

3 Replies

BS Balasubramanian Sattanathan Syncfusion Team April 13, 2020 01:16 PM UTC

Hi Vially Israel, 

Greetings from Syncfusion Support. 
 
Q1: 
We have validated your reported problem and we could able to reproduce at our side. Currently, we are checking the possible solution at our end and will update further details on April 14, 2020. Kindly be patience until then. 
 
Q2: 
We can disable the cell click by making use of showQuickInfo property and as well as cellClick event like below code snippet. 

showQuickInfo : 
showQuickInfo="false" 

function onCellClick(args) { 
    args.cancel = true; 
} 

Q3: 
We can disable the cell double click by making use of the cellDoubleClick event like below code snippet. And you can customize the editor window by making use of editorTemplate property like below sample and UG> 
 
function onCellDoubleClick(args) { 
    args.cancel = true; 
} 
 
 
Kindly try the above sample and let us know if you have any concerns. 

Regards, 
Balasubramanian S 



VI Vially Israel April 13, 2020 03:07 PM UTC

Thanks for the help.


I'm going to see the sample!


One thing to help at the Q1: I realized this problem onle happens with the active start page. That one has the following code:

<div class="carousel-item active">


If you have more than one page, the other one will haven't this problem, only the first.


BS Balasubramanian Sattanathan Syncfusion Team April 14, 2020 12:28 PM UTC

Hi Vially Israel, 
 
Thanks for your patience. 
 
We have analyzed the reported problem “previous/next day button disappear” and we could able to reproduce it at our end. So we logged the below defect report. The fix for this defect will be included in our Volume SP1 release which is expected to roll out by end of April, 2020. We would appreciate your valuable patience until then. You can track the status through the below feedback link. 
 
 
Regards, 
Balasubramanian S 


Loader.
Up arrow icon