|
|
@@ -1879,7 +1879,7 @@ for(let addTaskField of addTaskFields){
|
|
|
if (optionType == DFLayoutOptionType.Radio)
|
|
|
{
|
|
|
stringBuilder.Append(BuildRadioButtons(
|
|
|
- optionField.Properties.Options.Split(','),
|
|
|
+ DFLayoutOptionFieldProperties.ParseOptions(optionField.Properties.Options),
|
|
|
fieldData?.ToString(),
|
|
|
style,
|
|
|
"prs-web_utils-digital_form-field",
|
|
|
@@ -1891,7 +1891,7 @@ for(let addTaskField of addTaskFields){
|
|
|
else
|
|
|
{
|
|
|
stringBuilder.Append(BuildLookupField(
|
|
|
- optionField.Properties.Options.Split(',').Select(x => new Tuple<string, string?>(x, null)),
|
|
|
+ DFLayoutOptionFieldProperties.ParseOptions(optionField.Properties.Options).Select(x => new Tuple<string, string?>(x, null)),
|
|
|
fieldData?.ToString(),
|
|
|
style,
|
|
|
"prs-web_utils-digital_form-option prs-web_utils-digital_form-field",
|