SmartClient Version: v9.1p_2015-03-26/Pro Development Only (built 2015-03-26)
browser(s) and version(s) involved
IE 11.0.9600.17691
Update Versions: 11.0.17 (KB3032359)
Product ID:00150-20000-00003-AA459
Please try the following code for the Internet Explorer -
You can see that the text overflows in case of IE. the issue is not seen for other browsers.
browser(s) and version(s) involved
IE 11.0.9600.17691
Update Versions: 11.0.17 (KB3032359)
Product ID:00150-20000-00003-AA459
Please try the following code for the Internet Explorer -
Code:
myDynamicForm = isc.DynamicForm.create({
itemLayout:"absolute",
fields: [
{name:"setting", type:"radioGroup", wrap: false, showTitle: false, valueMap : ['Selection value one not too long', 'Selection Value very very very very very long']}
]
});
myDialog = isc.Window.create({
autoSize:true,
isModal:true,
title: "My Window",
items: [ myDynamicForm ]
});
myDialog.show();