BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi,
I'd like to know how to use events to save data to database. I set the editmode to "cellEditing" and I want to save when I change values. Do I need to save every time a column lose focus, or can I save the entire line after edit?
I also need to edit using taskbar (changing progress, duration and creating dependecies by configuring predecessors). I can't get event to this. How could I save it to database?
Regards,
Otto Machado.
Hi Otto,
Thanks for using Syncfusion products.
Query |
Syncfusion Comments | |
I'd like to know how to use events to save data to database. I set the editmode to "cellEditing" and I want to save when I change values. Do I need to save every time a column lose focus, or can I save the entire line after edit? |
We can save the changes to the database that made through cellEditing by using the “EndEdit” client side event.
Please refer the following code snippets for more details.
Code snippets:
| |
I also need to edit using taskbar (changing progress, duration and creating dependecies by configuring predecessors). I can't get event to this. How could I save it to database? |
We can also save the changes to the database that made by editing the taskbar item with the help of “TaskbarEdited” client side event.
Please refer the following code snippets for more details.
Code snippets:
|
We have also prepared a sample based on this and you can find the sample under the following location:
Sample: http://www.syncfusion.com/downloads/support/directtrac/118066/SQLinMVC_CellEdit1892977364.zip
Please let us know if you require further assistance on this.
Regards,
John. R
Hi Otto,
We were able to reproduce the issue and we have confirmed this as bug and logged a report on this. Also we have created a support incident under your account to track the status of this issue.
Please log on to our support website to check for further updates.
https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents
Please let me know if you have any questions.
Regards,
John R
<ej:Gantt ID="Ganttcontainer"
//…
ActionComplete="CompleteAction"
</ej:Gantt>
<script>
function CompleteAction(args) {
if (args.requestType == "validatePredecessor")
return
else if (args.requestType == "recordUpdate") {
debugger;
}
}
</script> |