There is web form that has a Radio Button field and the Computed Value that refers to this field has the following code:
aa := @Explode( btc ; “,” ;@True);
dvalues := “Anticipated purchase decision”:“Information”;
svalues := “New bid”:“Request for information”;
tempx := “<input type="radio" class="inputRadio" name="BidType" “+aa+” value="” + svalues + “" id="” + svalues + “" onclick="_doClick(‘$Refresh’, this, ‘_self’, ‘#_RefreshKW_BidType’)" /><label for="” + svalues + “">” + dvalues + “”;
@Implode(tempx)
When I open the form in the browser and choose one of the radio button’s option, the entire page gets refreshed and I’m sent to another page which is blank and has the “#_RefreshKW_BidType” at the end of the URL.
This problem doesn’t seems to happen in a Local Replica and even replacing the design using the one of the Local Replica, the error persists.
Can someone help me on this, please?