No |
Queries |
Syncfusion Comments | |
1
|
How can we stop taskbar duration update. Task duration should not be increase or decrease .???We want to only drag the task.
|
By using taskbarediting event we can restrict the duration update on resizing. We can set args.cancel as true when taskbarEditAction is LeftResizing or RightResizing.
We can also hide taskbar resizing element by over-riding the CSS.
Please find the below code example.
| |
2
|
How can we fire customized action on double click on task bar .which event we can use for that ????
|
actionBegin event gets triggered on double click of a record. Using this event with requestType beforeOpenEditDialog we can perform some custom actions. Please find the code example below.
| |
3
|
How can we fire customized action on dependency mapping which event we can use for that?
|
While drawing connector lines, taskbarediting event gets triggered with taskbarEditAction ConnectorPointRightDrag, ConnectorPointLeftDrag. After connector lines are drawn actionComplete event gets triggered with requestType save. | |
4
|
How can we fire customized action on task drag. Which event we can use for that?
|
taskbarediting event gets triggered with different taskbarEditAction like ParentDrag, ChildDrag, MilestoneDrag while dragging parent task, child task, milestone task respectively.
| |
5
|
Which event is fired when we click on the task bar only ???? |
Currently we don’t have any event for taskbarClick action. But we logged a feature request for this and you can track its status from below feedback link.
This feature will be implemented and included in any of our upcoming releases. Please cast your to make it count. We will prioritize the features for every release based on demands.
Currently we can achieve this by some work-around. We can manually bind the click event using javascript addEventListener method. Please find the code example below.
|