I have config like this:
<ganttdatasource ref="ganttdatasource1" :transport-read="ganttRead" :transport-update="ganttUpdate" :transport-create="ganttCreate" :transport-destroy="ganttDestroy" :transport-parameter-map="parameterMap" :transport-submit="ganttSubmit" schema-model-id="id" :schema-model-fields="fields"></ganttdatasource>
From what I can tell from the docs if transport-submit is defined then the create/update/destroy functions should not be fired and all should be batched up into a single call to transport-submit, but this does not happen: transport-submit is never called and transport-update etc. are all called as normal.
Is this a bug or do I misunderstand the operation?
