Re: [xul-interop] Remote XUL - tabbox

"Christophe Charron" <[email protected]> Fri, 28 Jul 2006 09:29:35 +0200
Newsgroups gmane.comp.lang.xul.general
Message-ID <[email protected]>
--===============1217614709==
Content-Type: multipart/alternative; 
	boundary="----=_Part_249920_33527799.1154071775750"

------=_Part_249920_33527799.1154071775750
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

2006/7/27, Aruna Devi Lakshmanan <[email protected]>:
>
> Hi all,
>
> I have a problem using tabbox element in my XUL page.
>
> I have the following XUL file:
>
> Test.xul:
> <?xml version="1.0"?>
> <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
> <window title="XUL Periodic Table"
>         xmlns:html="http://www.w3.org/1999/xhtml"
>
> xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
> <vbox flex="1" style="overflow: auto">
> <groupbox>
> <description>
>   This is the standard tabbox.  It looks fine.
> </description>
> <groupbox>
>   <tabbox  flex="1">
>     <tabs >
>        <tab label="Default"     />
>        <tab label="Tab"         />
>        <tab label="Orientation" />
>     </tabs>
>     <tabpanels flex="1" >
>        <label value="Default" />
>        <label value="Tab " />
>        <label value="Orientation" />
>     </tabpanels>
>   </tabbox>
> </groupbox>
> </groupbox>
> </vbox>
> </window>
>
> (Code from: http://www.hevanet.com/acorbin/xul/top.xul)
>
> The file opens fine when opened using file or chrome protocols. But when I
> try to open the same using http on Fx1.5.0.3 (this was built from source
> with
> default build configurations) the tab panels don't appear. Neither am I
> able
> to switch between tabs. Other files which do not contain tabbox work as
> expected. Also, the file opens fine when accessed using http from the
> mozilla
> application installed.
>
> I use Fedora 4, and the http server(Apache 2.0) that ships along. The
> application type is set in mime.types.
>
> Any help in this regard would be greatly appreciated.
>
> Regards,
> Aruna.
>
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys -- and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> _______________________________________________
> XUL News Wire      - http://xulnews.com
> XUL Job Postings   - http://xuljobs.com
> Open XUL Alliance - http://xulalliance.org
> _______________________________________________
> xul-talk mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/xul-talk
>
>
>
>
Well ... your code, just copied as in xul editor (web developper extension)
shows correctly the 3 tabs in FF1.5.0.5 on WXP SP2. Can't make anymore test
with ubuntu (temporarely broken)

-- 
Best regards,
Christophe Charron

------=_Part_249920_33527799.1154071775750
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

2006/7/27, Aruna Devi Lakshmanan &lt;<a href="mailto:[email protected]">[email protected]</a>&gt;:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi all,<br><br>I have a problem using tabbox element in my XUL page.<br><br>I have the following XUL file:<br><br>Test.xul:<br>&lt;?xml version=&quot;1.0&quot;?&gt;<br>&lt;?xml-stylesheet href=&quot;chrome://global/skin&quot; type=&quot;text/css&quot;?&gt;
<br>&lt;window title=&quot;XUL Periodic Table&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xmlns:html=&quot;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&quot;<br><br>xmlns=&quot;<a href="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul</a>&quot;&gt;<br>&lt;vbox flex=&quot;1&quot; style=&quot;overflow: auto&quot;&gt;<br>&lt;groupbox&gt;<br>&lt;description&gt;<br>&nbsp;&nbsp;This is the standard tabbox.&nbsp;&nbsp;It looks fine.
<br>&lt;/description&gt;<br>&lt;groupbox&gt;<br>&nbsp;&nbsp;&lt;tabbox&nbsp;&nbsp;flex=&quot;1&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;tabs &gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tab label=&quot;Default&quot;&nbsp;&nbsp;&nbsp;&nbsp; /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tab label=&quot;Tab&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tab label=&quot;Orientation&quot; /&gt;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tabs&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;tabpanels flex=&quot;1&quot; &gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label value=&quot;Default&quot; /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label value=&quot;Tab &quot; /&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;label value=&quot;Orientation&quot; /&gt;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/tabpanels&gt;<br>&nbsp;&nbsp;&lt;/tabbox&gt;<br>&lt;/groupbox&gt;<br>&lt;/groupbox&gt;<br>&lt;/vbox&gt;<br>&lt;/window&gt;<br><br>(Code from: <a href="http://www.hevanet.com/acorbin/xul/top.xul">http://www.hevanet.com/acorbin/xul/top.xul
</a>)<br><br>The file opens fine when opened using file or chrome protocols. But when I<br>try to open the same using http on Fx1.5.0.3 (this was built from source with<br>default build configurations) the tab panels don't appear. Neither am I able
<br>to switch between tabs. Other files which do not contain tabbox work as<br>expected. Also, the file opens fine when accessed using http from the mozilla<br>application installed.<br><br>I use Fedora 4, and the http server(Apache 
2.0) that ships along. The<br>application type is set in mime.types.<br><br>Any help in this regard would be greatly appreciated.<br><br>Regards,<br>Aruna.<br><br><br>-------------------------------------------------------------------------
<br>Take Surveys. Earn Cash. Influence the Future of IT<br>Join SourceForge.net's Techsay panel and you'll get the chance to share your<br>opinions on IT &amp; business topics through brief surveys -- and earn cash<br><a href="http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV">
http://www.techsay.com/default.php?page=join.php&amp;p=sourceforge&amp;CID=DEVDEV</a><br><br>_______________________________________________<br>XUL News Wire&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- <a href="http://xulnews.com">http://xulnews.com</a><br>XUL Job Postings&nbsp;&nbsp; - 
<a href="http://xuljobs.com">http://xuljobs.com</a><br>Open XUL Alliance - <a href="http://xulalliance.org">http://xulalliance.org</a><br>_______________________________________________<br>xul-talk mailing list<br><a href="mailto:[email protected]">
[email protected]</a><br><a href="https://lists.sourceforge.net/lists/listinfo/xul-talk">https://lists.sourceforge.net/lists/listinfo/xul-talk</a><br><br><br><br></blockquote></div><br>Well ... your code, just copied as in xul editor (web developper extension) shows correctly the 3 tabs in 
FF1.5.0.5 on WXP SP2. Can't make anymore test with ubuntu (temporarely broken)<br clear="all"><br>-- <br>Best regards,<br>Christophe Charron

------=_Part_249920_33527799.1154071775750--


--===============1217614709==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
--===============1217614709==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
XUL News Wire      - http://xulnews.com
XUL Job Postings   - http://xuljobs.com
Open XUL Alliance - http://xulalliance.org  
_______________________________________________
xul-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xul-talk

--===============1217614709==--