I have the code below as per the docs, all is fine except the parameter map function never gets called (for any operation, read or create etc.)
<ganttdatasource ref="ganttdatasource1"
:transport-read="gRead
:transport-parameter-map="parameterMap"
......
</ganttdatasource>
<gantt
data-source-ref="ganttdatasource1"
......
></gantt>
methods: {
parameterMap: function(options, operation) {
console.log("parameterMap!", options) //Never see this
.....
}