Thanks
Paul
4 Answers, 1 is accepted
The SubmittingChanges event will be called before they are sent to the server, i.e. before we call DomainContext.SubmitChanges().
You can't tamper with the changes made however because this will break the internal logic of RadDomainDataSource.
When the submit is finished you will receive the SubmittedChanges event, i.e. when the DomainContext invokes the callback method that we have passed in its SubmitChanges method.
I hope this helps.
Ross
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Thus Table1 could have different work-flows that need computing. Therefore I need to be able to pass a parameter back to the server which states the workflow function to use. Any ideas. Previously I would attach an entity and use that to work out the workflow, however this used to be added to the DomainContext option of the DomainDataSource where-as I don't believe that is supported in the RadDomainDataSource.
Thanks
P
I see.
Our RadDomainDataSource just like the stock MS DomainDataSource uses the DomainContext for everything it does.
So you can take the DomainContext instance that you assigned to the RadDomainDataSource.DomainContext property and do the same thing with this DomainContext.
I suppose that if you "piggy-back" an additional entity back to the server it would not cause any harm.
Can you try this and see how it goes?
Greetings,
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
P