J1.5

Difference between revisions of "Using the JPane classes in a component"

From Joomla! Documentation

m (add 2 others parameters to getInstance())
Line 21: Line 21:
 
<source lang="php">
 
<source lang="php">
 
jimport('joomla.html.pane');
 
jimport('joomla.html.pane');
//1st Parameter: Specify 'tabs' as appearance  
+
//1st Parameter: Specify 'tabs' or 'sliders' as appearance  
//2nd Parameter: Starting with third tab as the default (zero based index)
+
//2nd Parameter: Array with 3 parameters (optionnal)
 +
//              - Starting with third tab(=2) as the default (zero based index)
 +
//              - Specify the Transition of the default tab (-1 = closed, 0 = open)
 +
//              - Determine if all tabs or sliders can be closed (=true) or if there must always be almost 1 tab/slider open (=false) !
 
//open one!
 
//open one!
$pane =& JPane::getInstance('tabs', array('startOffset'=>2));  
+
$pane =& JPane::getInstance('tabs', array('startOffset'=>2, 'startTransition'=>-1, 'allowAllClose'=>true));  
 
echo $pane->startPane( 'pane' );
 
echo $pane->startPane( 'pane' );
 
echo $pane->startPanel( 'Example Panel 1', 'panel1' );
 
echo $pane->startPanel( 'Example Panel 1', 'panel1' );
Line 39: Line 42:
 
''Don't forget the echo's!! Thanks to tcp for this post: [http://forum.joomla.org/viewtopic.php?f=231&t=135641#p664869 FYI - Change in usage of JPane]
 
''Don't forget the echo's!! Thanks to tcp for this post: [http://forum.joomla.org/viewtopic.php?f=231&t=135641#p664869 FYI - Change in usage of JPane]
 
Also notice that the useCookies in the comments in the code or on the api, do NOT seem to be implemented''
 
Also notice that the useCookies in the comments in the code or on the api, do NOT seem to be implemented''
 +
 
== Adding onClick to Tab ==
 
== Adding onClick to Tab ==
 
Looking in JTabs source, you will found that there are two more options can be set; onActive and onBackground event. This is easy to add if you familiar with PHP and JavaScript. But I will show you how to do in an easy way (but may not a best practic). Look back to JPane->startPanel(..,...), for the first parameter you can add tag to it instead of normal text. So, I just add span tag to the tab title and set onClick to do something.
 
Looking in JTabs source, you will found that there are two more options can be set; onActive and onBackground event. This is easy to add if you familiar with PHP and JavaScript. But I will show you how to do in an easy way (but may not a best practic). Look back to JPane->startPanel(..,...), for the first parameter you can add tag to it instead of normal text. So, I just add span tag to the tab title and set onClick to do something.

Revision as of 16:42, 2 April 2012

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.


JPane class types include 'Tabs' and 'Sliders'.

Sliders implement the mootools accordian effect. Examples are the Joomla Admin parameters settings. Tabs also implement mootools (but in which degree?)

startPane and endPane() require a string identifier.

JPanes contain Panels

startPanel() and endPanel() require name and ID parameters.

You can set some options in the getInstance method.

JPaneTabs options[edit]

startOffset: The default tab to start with.
onActive: Another function to use when making a tab active (??)
onBackground: Another function to use when making a tab dissapear (??)

Example[edit]

jimport('joomla.html.pane');
//1st Parameter: Specify 'tabs' or 'sliders' as appearance 
//2nd Parameter: Array with 3 parameters (optionnal)
//               - Starting with third tab(=2) as the default (zero based index)
//               - Specify the Transition of the default tab (-1 = closed, 0 = open)
//               - Determine if all tabs or sliders can be closed (=true) or if there must always be almost 1 tab/slider open (=false) !
//open one!
$pane =& JPane::getInstance('tabs', array('startOffset'=>2, 'startTransition'=>-1, 'allowAllClose'=>true)); 
echo $pane->startPane( 'pane' );
echo $pane->startPanel( 'Example Panel 1', 'panel1' );
echo "This is panel1";
echo $pane->endPanel();
echo $pane->startPanel( 'Example Panel 2', 'panel2' );
echo "This is panel2";
echo $pane->endPanel();
echo $pane->startPanel( 'Example Panel 3', 'panel3' );
echo "This is panel3";
echo $pane->endPanel();
echo $pane->endPane();

Don't forget the echo's!! Thanks to tcp for this post: FYI - Change in usage of JPane Also notice that the useCookies in the comments in the code or on the api, do NOT seem to be implemented

Adding onClick to Tab[edit]

Looking in JTabs source, you will found that there are two more options can be set; onActive and onBackground event. This is easy to add if you familiar with PHP and JavaScript. But I will show you how to do in an easy way (but may not a best practic). Look back to JPane->startPanel(..,...), for the first parameter you can add tag to it instead of normal text. So, I just add span tag to the tab title and set onClick to do something.

$pane = & JPane::getInstance('Tabs'); 
echo $pane->startPane('doc') ;
echo $pane->startPanel('<span onclick="document.adminForm.job_id.value=0;">Summary</span>','doc-summary') ;
echo $this->loadTemplate('summary');
echo $pane->endPanel();
foreach($this->jobs as $job)
{
      $this->job = $job;
      if ($this->doc->type_id == CP_CLEARING_REQ)
      {
          $this->refJob = null;
          foreach ($this->refJobs as $refJob) {
              if ( ($refJob->project_no==$job->project_no) && ($refJob->subproject_code==$job->subproject_code) )
              {
                 $this->refJob = $refJob;
                 break;
              }
          }
      }
      echo $pane->startPanel('<span onclick="document.adminForm.job_id.value='.$job->id.';">'.$job->project_no.'/'
           .$job->subproject_code."</span>", 'job-'.$job->id);
      echo $this->loadTemplate('job');
      echo $pane->endPanel();	
}
echo $pane->endPane() ;