Select which corners should be rounded on the tabs : Corner « Rico « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » Rico » Corner 
Select which corners should be rounded on the tabs
 
<!--
Apache License, Version 2.0

Revised from Rico 2.0  demo code.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Rico Tabbed Panel Example</title>

<script src="rico21/src/rico.js" type="text/javascript"></script>
<script type='text/javascript'>

Rico.loadModule('Accordion','Corner');
Rico.onLoadfunction() {
  var options={panelHeight:200, hoverClass: 'panelHover', selectedClass: 'panelSelected'};
  options.corners=checkQueryString();
  new Rico.TabbedPanel$$('div.panelheader'), $$('div.panelContent'), options);
});

function checkQueryString() {
  var inputs=document.getElementsByTagName('input');
  var s=window.location.search;
  var i=s.indexOf('corner=');
  if (i >= 0) {
    s=s.slice(i+7);
    var i=s.indexOf('&');
    if (i >= 0s=s.substr(0,i-1);
    for (var i=0; i<inputs.length; i++)
      if (inputs[i].value==sinputs[i].checked=true;
  else {
    inputs[0].checked=true;
    s='top';
  }
  for (var i=0; i<inputs.length; i++)
    inputs[i].onclick=function() { document.forms[0].submit()};
  return s;
}

</script>

<style type="text/css">
body {font-family: Arial, Tahoma, Verdana;}
h1 {
  font-family : Trebuchet MS, Arial, Helvetica, sans-serif;
  font-size: 16pt;
}

#tabsExample {
  width: 650px;
}

.panelContentContainer {
  border : 1px solid #4f4f4f;
  clear:both;
}

.panelheader{
  height: 1.5em;
  color : #AAA;
  background: #D8E0F2;
  font-weight : bold;
  float: left;
  display: inline;
  margin-left: 2px;
  margin-right: 2px;
  text-align: center;
  white-space:nowrap;
  overflow:hidden;
  width: 20%;
  padding-top:3px;
}

.panelHover {
  color : #666;
  cursor: pointer;
}

.panelSelected {
  color : #444;
  background: #CFD4E6;
  cursor: auto;
}

.panelContent {
    background: #f8f8f8;
    overflow: auto;
}

input {
  margin-left: 2em;
}

</style>
</head>

<body>

<h1 style='float:left;'>Rico Tabbed Panels #(XHTML)</h1>
<form method='get' action=''>
<p style='clear:both;'>Select which corners should be rounded on the tabs:
<br />
<input type='radio' name='corner' id='corner_top' value='top' /> <label for='corner_top'>Both</label>
<input type='radio' name='corner' id='corner_left' value='tl' /> <label for='corner_left'>Left</label>
<input type='radio' name='corner' id='corner_right' value='tr' /> <label for='corner_right'>Right</label>
<input type='radio' name='corner' id='corner_none' value='none' /> <label for='corner_none'>None</label>
</p>
</form>

<div id="tabsExample">
   <div>
     <div class="panelheader">Overview</div>
     <div class="panelheader">HTML Code</div>
     <div class="panelheader">Rico Code</div>
   </div>

   <div class="panelContentContainer">
     <div class="panelContent">
      <br />This example illustrates how to use the Rico.TabbedPanel behavior to transform a set of 
      divs into a first class tabbed panel component.<br /><br />
     The Rico.TabbedPanel is actually a very simple component built off of Rico behaviors and effects.
     It adds the necessary event handlers on the respective divs to handle the visual aspects of switching tabs.
     </div>
     <div class="panelContent">
     <br />The example HTML structure is an outer div that holds all of the panels.  Then, each panel is just a
     couple of DIVs (one for the header and one for the contentwrapped in an outer DIV.  You can actually use 
     elements other than divs.
      <pre> &lt;div id="tabContainer"&gt;
         &lt;div id="panelHeaders"&gt;
           &lt;div id="Header1"&gt;
             Overview
            &lt;/div&gt;
         &lt;/div&gt;
         &lt;div id="panelContents"&gt;
            &lt;div id="Content1"&gt;
             ... content text ...
            &lt;/div&gt;
         &lt;/div&gt;
      &lt;/div&gt;
      </pre>
          </div>
          <div class="panelContent">
          <br />To attach the tabbed panel behavior to the tabbed panel container div, construct a Rico.TabbedPanel
          object and pass the panel titles and contents to it.  With the Prototype Selector class it is very easy.
<pre>
new Rico.TabbedPanel$$('div.panelheader'), $$('div.panelContent') );

 -or-

new Rico.TabbedPanel$$('div.panelheader'), $$('div.panelContent'), 
                      {panelHeight  : 200
                       hoverClass   : 'mdHover',
                       selectedClass: 'mdSelected'} );
</pre>
    The second example specifies the height of the panels and the css classes that can be associated 
    with the tabbed panel behaviors.  
    There are many other configuration parameters that can be specified to modify various visual aspects of the
    tabbed panel. The panelHeight is the attribute that is most commonly overridden.
    </div>
  </div>

</div>

</body>
</html>

   
  
Related examples in the same category
1. Rico.Corner - using color names
2. Rico.Corner - without borders
3. Rico.Corner - with option.border='#ff0000'
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.