XML
  Home arrow XML arrow Page 3 - An Introduction to XUL Part 3
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
XML

An Introduction to XUL Part 3
By: Dan Wellman
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 7
    2005-06-06


    Table of Contents:
  • An Introduction to XUL Part 3
  • Flex and Grids
  • Groupbox, Stack and Deck
  • Content Elements

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    An Introduction to XUL Part 3 - Groupbox, Stack and Deck
    ( Page 3 of 4 )

    Groupbox

    Another positional model that can be used is that of the <groupbox> which stacks child elements in a column and draws a bow around them.   The syntax for this is equally simple, and although one has been provided, an example is not strictly necessary:

    <groupbox>
      <caption label="Groupbox"/>
        <description value="Item1"/>
        <description value="Item2"/>
        <description value="Item3"/>
    </groupbox>
     

    Without a stylesheet to make it look nice, this example is pretty bland, but it demonstrates the use of the groupbox element.

    Stack & Deck

    Other layout methods include the stack and deck elements, both similar but with a subtle difference; both elements place interface elements in a physical stack, placing them on top of each other, but while the stack elements offers transparency, so elements at the bottom of the stack can still be visible, the deck does not, and elements will be seen to cover entirely or overlap depending on their placement.

    <stack>
      <description value="Bottom Stack!"/>
      <description value="Top Stack!"/>
    </stack>
    <spacer height="10"/>
    <deck>
      <description value="Bottom Deck!"/>
      <description value="Top Deck!"/>
    </deck>

    The code above will draw a window with the stack at the top and the deck below.  The stack elements are all displayed at once, hence the incomprehensible garble.  Notice how we have specified two decks, but only one deck is displayed, and this is the bottom one.  When the selectedIndex attribute is not defined, the default value is zero.  Indices, as we all know, tend to be zero based, so the above deck has a max index of 1.  In order to display the top deck, simply add a selectedIndex="1" attribute to the opening deck tag.  Now the top deck will be displayed.  Clearly, the use of a script to modify the selectedIndex value could produce effects similar to basic animation.



     
     
    >>> More XML Articles          >>> More By Dan Wellman
     

       

    XML ARTICLES

    - Flex Array Collection Sort and Filtering
    - The Flex Tree Control
    - Flex List Controls
    - Working with Flex and Datagrids
    - How to Set Up Podcasting and Vodcasting
    - Creating an RSS Reader Application
    - Building an RSS File
    - An Introduction to XUL Part 6
    - An Introduction to XUL Part 5
    - An Introduction to XUL Part 4
    - An Introduction to XUL Part 3
    - An Introduction to XUL Part 2
    - An Introduction to XUL Part 1
    - XML Matters: Practical XML Data Design and M...
    - Practical XML Data Design and Manipulation f...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek