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

ListGrid column name put in window space in IE11

$
0
0
When creating a ListGrid with showFilterEditor, the column name is being put into the window name space using SmartClient Version: v9.1p_2015-02-05/Pro Deployment (built 2015-02-05) on Internet Explorer 11.

The problem can only be reproduced when showFilterEditor is true and on Internet Explorer browsers only (not reproducible on Chrome and Firefox).

The problem can be reproduced by the following code snippet:

Code:

isc.ListGrid.create({
    ID: "countryList",
    width:500, height:500, alternateRecordStyles:true,
    fields:[
        {name:"countryName", title:"Country"},
        {name:"capital", title:"Capital"},
        {name:"continent", title:"Continent"}
    ],
    showFilterEditor: true
});

In console of Developer Tools:

For example entering
Code:

window.capital
will return the DOM element as follow

Code:

<input name="capital" tabIndex="1344" class="textItem" id="isc_H" style="width: 146px; height: 20px; text-align: left;" onselect="isc_TextItem_1._handleSelect()" type="TEXT" _itemPart="_element" _containsItem="isc_TextItem_1" handleNativeEvents="false" AUTOCOMPLETE="OFF"></input>
This is causing a critical problem and affecting the release of our product. We need a resolution from Isomorphic ASAP.

----------------
SmartClient Version: v9.1p_2015-02-05/Pro Deployment (built 2015-02-05)
Windows 7 Internet Explorer 11.0.9600.16428

Viewing all articles
Browse latest Browse all 4756

Trending Articles