String nameValueEncoded = URLEncoder.encode(nameValue, "iso-8859-1").replaceAll("%", "").replaceAll("\\*", "");
if (attrTypology.equals("radio")) {
String ilValoreCorrente = attrValue;
XMLBuilder theXMLconfTMP = confBean.getTheXMLValControllati();
String thisExternalPath = attrExternalPath;
int nodiOpzioni = theXMLconfTMP.contaNodi(thisExternalPath);
if (theXMLconfTMP.contaNodi(thisExternalPath + "[@value = '']") == 0 && (!selectAddEmptyValue.equals("") && selectAddEmptyValue.equals("yes"))) {
outputField = "<input type=\"radio\" name=\"[" + nameValue + "]\" value=\"\" checked=\"true\" >nessun valore";
}
for (int a = 0; a < nodiOpzioni; a++) {
outputField += "<input type=\"radio\" name=\"[" + nameValue + "]\" value=\"" + theXMLconfTMP.valoreNodo(thisExternalPath + "[" + (a + 1) + "]/@value") + "\">" + theXMLconfTMP.valoreNodo(thisExternalPath + "[" + (a + 1) + "]/text()").replaceAll(" ", " ");