hi! In a DataSource, say i want to have an additional field only in add responses. From what i've read, i do that by declaring an operationbinding with an "outputs" field in the ds.xml like this:
Now, as mentioned i want all the 'regular' fields in the xml, plus one additional. I am wondering if there is any way/syntax for that? Something like "*, myextrafield". Duplicating every field in the datasource again is pretty error prone and verbose if you see what i mean.
Cheers
Code:
<operationBinding operationType="add"> <serverMethod>dsAdd</serverMethod> <outputs>extraField</outputs> </operationBinding>
Cheers
Comment