Hi Dojo
I found the following parameter in a connector that was made quite some time ago. The parameter has <Type>read</Type> but defines a button with name <Display>Sync</Display>. Although this seems invalid, I'm wondering if there would be any situation where you want to define a button parameter of type read. Would you know a use case? Or is this just simply wrong?
<Param id="74" trending="false">
<Name>outgoingRequestWithIncomingRequestTableButton</Name>
<Description>Resync With Incoming Request Table</Description>
<Type>read</Type>
<Interprete>
<RawType>other</RawType>
<LengthType>next param</LengthType>
<Type>string</Type>
</Interprete>
<Display>
<RTDisplay>true</RTDisplay>
</Display>
<Measurement>
<Type width="110">button</Type>
<Discreets>
<Discreet>
<Value>1</Value>
<Display>Sync</Display>
</Discreet>
</Discreets>
</Measurement>
</Param>
Thank you in advance!
Kind regards
As stated in the following docs, a button should be used with parameter type 'write'. As for the question, if it's possible with a 'read' type: I'm not quite sure how the button would behave, but since this does seem to be an incorrect implementation, I would advise to just fix it instead.
Okay good. Thank you Robin!