dhtmlx-scheduler

React with Dhtmlx Scheduler

人盡茶涼 提交于 2021-01-29 11:38:54
问题 Need help with following scenario. I have a sidebar on left and scheduler on right, and navigation links When sidebar is opened, scheduler should compress to accommodate in the rest of the screen size, and when sidebar is closed, scheduler should expand. It works fine on page refresh, but when I go to other link and then come back to calendar link, Scheduler does not compress correctly. Following if the github link of the code github.com/sonalk215/dhtml Should i unmount and remount scheduler

Add timeline event on DHtmlX scheduler in angularjs

≡放荡痞女 提交于 2020-02-21 13:52:10
问题 I have injected DHtmlX scheduler in my angularjs app with the help of this link. I have followed all the steps of the above link and it's working. Now, I am trying to add timeline event in angular DHtmlX scheduler. But I am not getting the way how can I add timeline event on it. please help out on this. Any suggestion or help would be appreciated , thanks in advance 回答1: I have got the way to add timeline event on DHtmlX scheduler in angularjs, First add this js file dhtmlxscheduler_timeline

yii2 with dhtmlx scheduler and select populated from the server

∥☆過路亽.° 提交于 2019-12-11 17:17:01
问题 I am trying to populate the project select dropdown with data from the server. I am using yii2. My controller data action: public function actionData() { $list = new OptionsConnector(null, "PHPYii"); $list->render_table("project", "id", "id(value),name(label)"); $connector = new JSONSchedulerConnector(null, "PHPYii"); $connector->set_options("project", $list); $connector->configure( new Booking(), "id", "start, end, activity, user, subsubproject, status, comment" ); $connector->render(); } I

Event handler for header clicks in DHTMLX Scheduler

人盡茶涼 提交于 2019-12-11 11:33:55
问题 We use DHTMLX Scheduler and we would like to attach a listener for clicks on header in week view , unit view , etc. We didn't find a way to do this. We also need date in our listener with date for which click was performed. How can we do this with DHTMLX Scheduler ? 回答1: DHTMLX Scheduler does not provide an event for clicks on header, so in order to do this, you need to change templates for your views first: var toStr = scheduler.date.date_to_str(scheduler.config.day_date); scheduler

Drag and drop using protractor in dthmlx component

China☆狼群 提交于 2019-12-08 06:26:21
问题 I am using dhtmlx scheduler component with angular. Dhtmlx scheduler You can find drag and drop of events in live demo of Timeline view . I need to writer protractor test case for it. How can I perform drag and drop of dhtmlx component using protractor? 回答1: The demos available on the Dhtmlx scheduler page don't use angular. I've found another suitable demo page which I would use as an example. The general idea is pretty simple - use dragAndDrop() function. Unfortunately it is not documented

Drag and drop using protractor in dthmlx component

二次信任 提交于 2019-12-07 04:01:23
I am using dhtmlx scheduler component with angular. Dhtmlx scheduler You can find drag and drop of events in live demo of Timeline view . I need to writer protractor test case for it. How can I perform drag and drop of dhtmlx component using protractor? alecxe The demos available on the Dhtmlx scheduler page don't use angular. I've found another suitable demo page which I would use as an example. The general idea is pretty simple - use dragAndDrop() function. Unfortunately it is not documented on the API documentation page . May be this is because it is coming from webdriverjs and protractor

Add timeline event on DHtmlX scheduler in angularjs

我们两清 提交于 2019-12-05 17:22:44
I have injected DHtmlX scheduler in my angularjs app with the help of this link . I have followed all the steps of the above link and it's working. Now, I am trying to add timeline event in angular DHtmlX scheduler. But I am not getting the way how can I add timeline event on it. please help out on this. Any suggestion or help would be appreciated , thanks in advance I have got the way to add timeline event on DHtmlX scheduler in angularjs, First add this js file dhtmlxscheduler_timeline.js in your angularjs project.(add this in src/assets/js folder and call this file ) Second add this code in