I am using Client edition 4.1. The b:window command is not working in IE 7.0.5730. The bottom and the right of the window is being cut off. Although it comes up perfectly fine on Firefox and Opera.
any help?
thanks
Rohit
I am using Client edition 4.1. The b:window command is not working in IE 7.0.5730. The bottom and the right of the window is being cut off. Although it comes up perfectly fine on Firefox and Opera.
any help?
thanks
Rohit
same here, - but was already
4 November, 2007 - 10:51 — livenowsame here, - but was already a problem with the 4.0 version.
strangely the demo-explorer renders windows without problems.
b:window
5 November, 2007 - 09:39 — nick@backbaseDo you mean that the window itself is cut off, or the content? The window control (and a number of others) need to be used in quirks mode in IE, that is, you need to add a comment as the first line of the page if you are using a DOCTYPE.
thx, - now I'm using: <!--
5 November, 2007 - 10:37 — livenowthx, - now I'm using:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
and the window-control is rendered without hitches.
but:
now the tab-heads are missing the left, right and when selected bottom border-line.
any hints?
cheers,
livenow
tab head borders
5 November, 2007 - 10:48 — nick@backbaseIf you can put together a short code fragment which illustrates the problem, post it here and I or someone else will take a look.
<!-- --> <!DOCTYPE html
5 November, 2007 - 14:16 — livenow<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="/ta/client_4_1/demos/importHTML/css/importHTML.css" />
<script type="text/javascript" src="client_4_1/engine/boot.js">
</script>
</head>
<body id="base" style="background-color:#F0F5F7;padding: 0px 0 0 0px">
<script xmlns="http://www.w3.org/1999/xhtml" xmlns:b="http://www.backbase.com/2006/btl" xmlns:xi="http://www.w3.org/2001/XInclude" type="application/backbase+xml">
<xi:include href="/ta/client_4_1/bindings/config.xhtml_btl.chameleon.xml" />
<b:tabBox id="desktop_left" width="50%" height="100%">
<b:tab label="Test">test</b:tab>
</b:tabBox>
</script>
</body>
</html>
thx for helping :)
Thanks!! the comment did the work.
5 November, 2007 - 15:10 — rgaurava@gmail.comI placed and commen like
<!-- -->and all my controls are working just fine. Thanks for the prompt response.FYI..
Also I tried 'livenow''s exact code and it seems to work for me just fine
Rohit
so nobody else has the
6 November, 2007 - 14:51 — livenowso nobody else has the problem of missing borders on tab-headers in ie 7.05?
no help or hint for the
9 November, 2007 - 15:11 — livenowno help or hint for the tab-box border problem?
found it thx, the problems
11 November, 2007 - 19:13 — livenowfound it thx,
the problems occur when using global style-sheets
Hello, The IE 7.0.5730.13
6 November, 2007 - 17:07 — mbstefHello,
The IE 7.0.5730.13 will show nothings when i use it how it explained:
The startfile is:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>momoCMS</title>
<link href="/frontend/styles.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="/client_4_0_2/engine/boot.js"></script>
</head>
<body>
<div id="loadingMessage" style="display:none;">Lade das frontend...</div>
<script type="text/backbase+xml" xmlns:e="http://www.backbase.com/2006/xel" e:onload="var oElm = document.getElementById('loadingMessage'); oElm.style.display = '';bb.html.position(oElm, document.body, 'center')"></script>
<script type="text/backbase+xml"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:b="http://www.backbase.com/2006/btl"
xmlns:c="http://www.backbase.com/2006/command"
xmlns:d="http://www.backbase.com/2006/tdl"
xmlns:e="http://www.backbase.com/2006/xel">
<xi:include href="client_4_0_2/bindings/config.xhtml_btl.chameleon.xml" />
<xi:include href="client_4_0_2/debugger/debugger.xml" />
<e:variable name="username"><e:data type="text/plain"><?php echo $_SERVER['PHP_AUTH_USER']; ?></e:data></e:variable>
<div id="site">
<b:panelSet rows="22px *" fullScreen="true">
<b:panel backgroundColor="#c9c9c9"><xi:include href="/frontend/menu.xml" /></b:panel>
<b:panel id="content" padding="5px 10px">
<xi:include href="/frontend/startfile.php" />
</b:panel>
</b:panelSet>
</div>
<e:handler event="DOMNodeInsertedIntoDocument" type="text/javascript"><![CDATA[
//Remove the loading message
document.body.removeChild(document.getElementById('loadingMessage'));
]]></e:handler>
</script>
</body>
</html>
If i delete the first line
<!-- -->from the index the IE will show all, but without correct b:windows
(I am using client 4.0.2)