No |
Query |
Syncfusion Comments |
1 |
How do you raise an event such as 'resizing' or 'resizeStart'/'resizeEnd'? |
These events are get triggered on column resizing action respectively the resizeStart event gets triggered when the column resize starts, the resizing event gets triggered on resizing, and resizeStop event gets triggered when column resize ends.
|
2 |
I'm looking for a particular event for change of the startdate or enddate of a task. Which event is this? |
While changing the start date and end date, by resizing the taskbar, taskbarEditing event gets triggered. In the taskbarEditing event argument we will get the parameter called taskBarEditAction. While changing the start date the taskBarEditAction value will be LeftResizing. While changing the end date its value will be RightResizing. Using this value we can differentiate which value will be changes on taskbar resize and drag actions.
On cell edit action, cellEdit event gets triggered, cellEdit event argument has the parameter named columnName. Using this parameter we can find which column will be edited.
Can you please share your requirement that you want to achieve on this events?
|