Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

RichTextItem not accepting input in IE11

$
0
0
We use a technique to display a VLayout as a modal form but any RichTextItems within a layout displayed in this way don't accept input in IE11.

The following code is a minimal test case showing the problem...

Code:


isc.VLayout.create({
    members: [
        isc.VLayout.create({
            ID: "componentID",
            visible: false,
            height: 500,
            width: 590,
            visibility: "hidden",
            members: [
                isc.DynamicForm.create({
                    fields: [{
                        type: "RichTextItem",
                        height: 200,
                        width: 425
                    }]
                })
            ]
        })
    ]
});
var component = window["componentID"];

component.parentElement.removeChild(component);

component.show();

var width = component.getScrollWidth();
var height = component.getVisibleHeight();

var defaultProps = {
    width: width,
    height: height,
    items: [component]
}

var w = isc.Window.create(defaultProps);
w.show();

In all other browsers the richtextitem displayed can be editted but not in IE11. Any suggestions as to how to get it to work in IE11 would be much appreciated.

Thanks,

Dan

IE11 Version 11.0.996
v8.3p_2013-11-10/Pro Deployment (built 2013-11-10)

Viewing all articles
Browse latest Browse all 4756

Trending Articles