We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6da51e3 commit 1ed8127Copy full SHA for 1ed8127
components/projects/bootstrapcomponents/src/choicegroup/choicegroup.ts
@@ -84,9 +84,10 @@ export class ServoyBootstrapChoicegroup extends ServoyBootstrapBasefield<HTMLDiv
84
let returnValue = [];
85
this.selection.forEach((element, index) => {
86
if (element === true)
87
- returnValue.push(this.valuelistID[index + this.allowNullinc].realValue);
+ returnValue.push(this.valuelistID[index + this.allowNullinc].realValue +'');
88
});
89
- if (!returnValue.length) returnValue = null;
+ if (!returnValue.length) returnValue = null;
90
+ else if (!this.allowMultiselect) returnValue = returnValue[0];
91
return returnValue;
92
}
93
0 commit comments