Smarclient Version: v10.0p_2015-04-01/Enterprise Development Only
Bowser: IE11
After upgrading to 10.0, text for each Radio item is displaying in multiple lines instead of single. It doesn't look good from the UI perspective. This issue is there in IE browser only.
Screen shot of the issue as well as the expected result have been attached.
I have reproduce the issue using smartclient sdk and found that it's related to smartclient upgrade. Below is the code I for I used
isc.DynamicForm.create({
width: 300,
fields: [
{
name: "invalidCharOptions",
ID:"invalidCharOptions",
showTitle:false,
type: "radioGroup",
colSpan: "4",
defaultValue:"None",
required: true,
vertical: true,
showLabel: false,
valueMap:{
"None":"None",
"SubstituteCharacters" : "Substitute characters individually",
"SubstituteSequence" : "Replace characters then omit consecutive replacements",
"Remove" : "Remove characters",
"RemoveSpecial" : "Remove all characters except alphanumeric dash and period"
},
redrawOnChange:true
},
]
});
Bowser: IE11
After upgrading to 10.0, text for each Radio item is displaying in multiple lines instead of single. It doesn't look good from the UI perspective. This issue is there in IE browser only.
Screen shot of the issue as well as the expected result have been attached.
I have reproduce the issue using smartclient sdk and found that it's related to smartclient upgrade. Below is the code I for I used
isc.DynamicForm.create({
width: 300,
fields: [
{
name: "invalidCharOptions",
ID:"invalidCharOptions",
showTitle:false,
type: "radioGroup",
colSpan: "4",
defaultValue:"None",
required: true,
vertical: true,
showLabel: false,
valueMap:{
"None":"None",
"SubstituteCharacters" : "Substitute characters individually",
"SubstituteSequence" : "Replace characters then omit consecutive replacements",
"Remove" : "Remove characters",
"RemoveSpecial" : "Remove all characters except alphanumeric dash and period"
},
redrawOnChange:true
},
]
});