I am developing a recurring event feature in already working DHTMLX scheduler. I am able to insert the recurring event in my DB. When I try to update the event. It gives me error in setUpdated(), sendData() and getState() functions of DHTMLX javascript. As, these methods are working perfectly, in normal event_id(e.g: 132) but not working in recurring event_id(id#timestamp). Please give me your advice. Thank you for your help.
DHTMLX scheduler recurring event id(id#timestamp) getting failed in DHTMLX functions
361 Views Asked by Muhammad Ahmed At
1
There are 1 best solutions below
Related Questions in DHTMLX
- Group tasks by a property which have array of values using angular gantt dhtmlx
- How to add a custom button to the dhtmlx library toolbar?
- dhtmlxgantt get a Uncaught TypeError: Cannot read properties of undefined (reading 'toLowerCase') when i toggle fullscreen
- Schedular that have length in place of days in the attached image
- DHTMLX Spreadsheet - global is undefined (vite + vue 2)
- Dhtmlx bar chart text going out of parent div
- How to Show 30 days in Day View with Horizontal Scrollbar in Dhtmlx Scheduler?
- Disabling/Stopping Data from Refreshing in DHTMLxGantt?
- Biweekly View with DHTMLX Gantt Chart
- Uncaught ReferenceError: dataProcessor is not defined
- Dhtmlx Calculating duration without effecting the ganett grid chart similar to MS Project
- Dhtmlx scheduler: custom second scale in timeline view
- Is Split Task functionality available in React Version of Dhtmlx Gantt Chart?
- Dhtmlx gantt changes project start date automatically
- Dragging tasks within the end date of source task DHTMLX Gantt
Related Questions in DHTMLX-SCHEDULER
- How to Show 30 days in Day View with Horizontal Scrollbar in Dhtmlx Scheduler?
- Dhtmlx Calculating duration without effecting the ganett grid chart similar to MS Project
- Dhtmlx scheduler: custom second scale in timeline view
- Having what week day is on left column
- DHTMLX Scheduler Day View, View event count if multiple events in same hour
- How to install dhtmlx
- Hide / Remove the DHMLX created watermark (footer) sentence when export pdf or png
- DHTMLX scheduler recurring event id(id#timestamp) getting failed in DHTMLX functions
- how we get multiple section_ids by day or week or month change in dhtmlxscheduler
- pass dynamic data-attribute to a dhtmlxScheduler
- DHTMLX Scheduler timeline view - labels with longer text don't appear in tree mode
- Updating dhtmlx-sheduler uisng React
- jQuery div reload with a Get submit on following page - timing issues - dhtml scheduler
- DHTMLX Scheduler Month View only event count
- Custom Event Box in dhtmlx-scheduler
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The described issues occur because of the specific behavior of the recurring events. All series of the recurring events are technically the single event with the normal id, like
id: 1. All other occurrences are parts of this event that don't exist till they won't be shown in the current view. To they can't be accessed by thegetEvent()call if they don't display in the current view.You can get the required event using the
getEvents(from ,to)method: https://docs.dhtmlx.com/scheduler/api__scheduler_getevents.html which "generates" all occurrences that should be displayed: https://prnt.sc/1qgx1hlHope it will be easier to do the required thing with this info. Also, you can check out the guide of updating occurrences by the following link: https://docs.dhtmlx.com/scheduler/recurring_events.html#editingdeletingacertainoccurrenceintheseries