Pass an infotable as a mashup parameter to another mashup
Hi guys,
I am trying to send an infotable to another mashup using the collection widget. I bind data from the selected row of a grid to this collection widget. I then want send the selected row data as an infotable to my other mashup in the collection widget. I can't figure out what the javescript needs to look like to be able to do this. For a parameter its quiet straight forward:
{"Parameter":"Parameter}
I tried the following for an infotable format but it does not seem to be working. If anyone can help. I add this to the javascript in the "MashupPropertyBinding" property of the Collection Widget.
{"InfoTable": {
"dataShape": {
"fieldDefinitions": {
"AssetName": {
"name": "AssetName",
"baseType": "STRING"
},
"StartTime": {
"name": "StartTime",
"baseType": "DATETIME"
},
"EndTime": {
"name": "EndTime",
"baseType": "DATETIME"
},
"ResponsibleParty": {
"name": "ResponsibleParty",
"baseType": "STRING"
},
"Status": {
"name": "Status",
"baseType": "STRING"
}
}
},
"rows": {
"AssetName": "AssetName",
"Status": "Status",
"StartTime": "StartTime",
"EndTime": "EndTime",
"ResponsibleParty": "ResponsibleParty"
}
}
}

