I have the group with inputs inside yes. Looks like this:

Code:
<div is="dmx-radio-group" id="group1" class="radio-group">
<div class="col form-check">
<input class="form-check-input" type="radio" value="1" id="transaction_1" name="transaction_type">
<label class="form-check-label" for="transaction_1">Sell</label>
</div>
<div class="col form-check">
<input class="form-check-input" type="radio" value="2" id="transaction_2" name="transaction_type">
<label class="form-check-label" for="transaction_2">Trade</label>
</div>
<div class="col form-check">
<input class="form-check-input" type="radio" value="3" id="transaction_3" name="transaction_type">
<label class="form-check-label" for="transaction_3">Sell or Trade</label>
</div>
</div>
Do you mean selecting this $value will get the value of the selection of the inputs inside?
