jQWidgets Forums
Forum Replies Created
-
Author
-
December 2, 2020 at 12:28 am in reply to: Disable Jqx Scheduler default scrolling to 12 A.M on adding or refreshing data Disable Jqx Scheduler default scrolling to 12 A.M on adding or refreshing data #113721
Is there any update for this functionality?
As I am just missing this feature for my implementation of jqx scheduler or can you guys suggest to me a different way to achieve this?
September 3, 2020 at 7:05 pm in reply to: How to get resource Id on cell click on scheduler How to get resource Id on cell click on scheduler #112968Sorry If I was not informative enough to describe the problem. basically I am using this method to open my custom edit dialog:
onCellClick(event) { this.openCustomAppointmentDialog(event.args.date.toDate(), event.args.date.toDate()); }
<jqxScheduler (onCellClick)="onCellClick($event)"></jqxScheduler>
So I just wanted to know that How can I get the resource Id of the cell, I clicked in the event object. Here is an example where you can look into this event object in the console when you click any of the cells in the scheduler.
https://stackblitz.com/edit/github-fvj5qt?file=src%2Fapp%2Fapp.component.ts
August 25, 2020 at 10:23 pm in reply to: Context Menu Doesn't retain focus in jqx scheduler Context Menu Doesn't retain focus in jqx scheduler #112817I also modified this example on stackblitz to demonstrate my issue:
https://stackblitz.com/edit/github-o4sw8e-8jusfs?file=src%2Fapp%2Fapp.component.ts
August 25, 2020 at 10:16 pm in reply to: Cannot customize appointment to add a button Cannot customize appointment to add a button #112816Sorry, Hristo for including a wrong example. I have made this example that explains my query:
https://stackblitz.com/edit/github-o4sw8e?file=src/app/app.component.ts
In this example, I have added a button to render appointment method and tried to bind the click with the testing() method
but it didn’t work.So I am unable to set on click listeners to buttons added during appointment customization.
August 16, 2020 at 8:41 pm in reply to: Scheduler Scrolling to Top when clicking on the appointment and opening context Scheduler Scrolling to Top when clicking on the appointment and opening context #112696Hello Hristo,
I think you didn’t understand me clearly as I was talking about customizing the appointment instead of the appointment dialog. As demonstrated in this example: https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxscheduler/scheduler-appointment-customization.htm?material .
I like to insert a button or just open the context menu when the user clicks on the upper-left corner of the appointment. For now, it works but does not retain the focus as the scheduler scrolls up when I click on the appointment and open the menu. I am also handling contextMenuCreate and contextMenuOpen methods.
I just want to disable that scroll and just open the context menu on left click on the top-right corner of the appointment and they should retain there focus and do not disappear.
The scroll is not triggered by any other element on the page it is the scheduler that does the scroll.
-
AuthorPosts