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

FormItem prompt message stuck in IE11 status bar

$
0
0
The prompt message of a FormItem (e.g. CheckboxItem) is stuck in the status bar of Internet Explorer 11 using SmartClient Version: v9.1p_2015-08-21/Pro Deployment (built 2015-08-21)

The problem can be reproduced by the following code snippet:

Code:

    var v = isc.VLayout.create();
    v.addMember(isc.DynamicForm.create({
        fields: [
        {
            name: "checkbox",
            prompt: "click me",
            type: "checkbox"
        }
      ]}));
    v.addMember(isc.DynamicForm.create({
        fields: [
        {
            name: "textItem1",
            type: "text",
            showTitle: false
        },
        {
            name: "textItem2",
            type: "text",
            showTitle: false
        }
      ]}));
  v.addMember(isc.IButton.create({title: 'Click'}));

Steps to reproduce:
1) Click on the 'checkbox' and 'click me' prompt appears on the IE11 status bar
2) Click on any other component (e.g. textItems, button)
ERROR) The 'click me' prompt message still appears on the IE11 status bar

This problem may seem intermittent at times but reloading the page and repeat the above steps seem always able to reproduce the issue.

----------------
SmartClient Version: v9.1p_2015-08-21/Pro Deployment (built 2015-08-21)
Windows 7 Internet Explorer 11.0.9600.17728CO

Viewing all articles
Browse latest Browse all 4756

Trending Articles