Hello Isomorphic,
we found an error with a isc.HTMLPane in a isc.Window. When we try to close the window by clicking the close button, the window disappears,
but the html pane remains on the page. It seems not possible to interact with the html pane.
This issue occurs on Google Chrome v32.0.1700.107 m on your feature explorer and with the actual v9.0p_2014-02-17 isc build and can not be reproduced on Firefox or IE.
The occurence of the error seems to depend on the included site, as the following example shows.
The example creates one window that can be closed (wikipedia) and another one that won't close correctly (mercedes):
http://www.smartclient.com/docs/9.0/a/system/reference/SmartClient_Explorer.html#windowAutosize
Do you have a solution for our problem?
Kind regards
Marcus
we found an error with a isc.HTMLPane in a isc.Window. When we try to close the window by clicking the close button, the window disappears,
but the html pane remains on the page. It seems not possible to interact with the html pane.
This issue occurs on Google Chrome v32.0.1700.107 m on your feature explorer and with the actual v9.0p_2014-02-17 isc build and can not be reproduced on Firefox or IE.
The occurence of the error seems to depend on the included site, as the following example shows.
The example creates one window that can be closed (wikipedia) and another one that won't close correctly (mercedes):
http://www.smartclient.com/docs/9.0/a/system/reference/SmartClient_Explorer.html#windowAutosize
Code:
isc.Window.create({
"width": 500,
"height": 300,
"items": [isc.HTMLPane.create({
"contentsType": "page",
"contentsURL": "http://mercedes.de"
})]
});
isc.Window.create({
"width": 500,
"height": 300,
"items": [isc.HTMLPane.create({
"contentsType": "page",
"contentsURL": "http://www.wikipedia.org/"
})]
});Kind regards
Marcus