Hi, I am using WPF 6.1.2.1 and am having a bit of trouble with using a checkbox in the RDD builder.
My problem is that I can't get the value for the checkbox to be anything but true/false. If I use a checkbox builder instead then it works fine.
I define the checkbox in a data definition file with the following code,
<DataDefinition name="myCheckbox">
<Label>Checkbox</Label>
<Required>true</Required>
<DataType>string</DataType>
<DataEntryControl>com.bowstreet.builders.webapp.CheckBoxBuilder</DataEntryControl>
<DataEntryInputs>
<Inputs>
<Input name="CheckedValue">Yes</Input>
<Input name="UncheckedValue">No</Input>
</Inputs>
</DataEntryInputs>
</DataDefinition>
has anyone run into this problem?