API17

Difference between revisions of "JHtmlSelect"

From Joomla! Documentation

(Bulk upload by Doxiki2)
 
m (→‎User contributed notes: bad link repair)
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
=={{JVer|11.1}} JHtmlSelect==
 +
===Description===
 +
{{Description:JHtmlSelect}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JHtmlSelect|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JHtmlSelect|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
{{Description:JHtmlSelect}}
 
===Defined in===
 
libraries/joomla/html/html/select.php
 
===Subpackage===
 
[[Subpackage Html/11.1|Html]]
 
===Extends===
 
===Extended by===
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
 
|-
 
|-
 +
!Visibility
 
!Method name
 
!Method name
 
!Description
 
!Description
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::booleanlist/11.1|booleanlist]]
 
|[[JHtmlSelect::booleanlist/11.1|booleanlist]]
 
|Generates a yes/no radio list.  
 
|Generates a yes/no radio list.  
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::genericlist/11.1|genericlist]]
 
|[[JHtmlSelect::genericlist/11.1|genericlist]]
 
|Generates an HTML selection list.  
 
|Generates an HTML selection list.  
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::groupedlist/11.1|groupedlist]]
 
|[[JHtmlSelect::groupedlist/11.1|groupedlist]]
 
|Generates a grouped HTML selection list from nested arrays.  
 
|Generates a grouped HTML selection list from nested arrays.  
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::integerlist/11.1|integerlist]]
 
|[[JHtmlSelect::integerlist/11.1|integerlist]]
 
|Generates a selection list of integers.  
 
|Generates a selection list of integers.  
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::optgroup/11.1|optgroup]]
 
|[[JHtmlSelect::optgroup/11.1|optgroup]]
 
|Create a placeholder for an option group.  
 
|Create a placeholder for an option group.  
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::option/11.1|option]]
 
|[[JHtmlSelect::option/11.1|option]]
 
|Create an object that represents an option in an option list.  
 
|Create an object that represents an option in an option list.  
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::options/11.1|options]]
 
|[[JHtmlSelect::options/11.1|options]]
 
|Generates the option tags for an HTML select list (with no select tag surrounding the options).  
 
|Generates the option tags for an HTML select list (with no select tag surrounding the options).  
 
|-
 
|-
 +
|public static
 
|[[JHtmlSelect::radiolist/11.1|radiolist]]
 
|[[JHtmlSelect::radiolist/11.1|radiolist]]
 
|Generates an HTML radio list.  
 
|Generates an HTML radio list.  
 
|-
 
|-
 
|}
 
|}
 +
* '''Defined in''' libraries/joomla/html/html/select.php
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.html.html.select' );</source>
 
<source lang="php">jimport( 'joomla.html.html.select' );</source>
 
===See also===
 
===See also===
* [[JHtmlSelect|Other versions of this class]]
+
* {{JVer|11.1}} '''JHtmlSelect source code''' on [[jplatform:html/html/select.php|BitBucket]]
 +
* {{JVer|11.1}} Subpackage [[Subpackage Html/11.1|Html]]
 +
* [[JHtmlSelect|Other versions of JHtmlSelect]]
 
{{SeeAlso:JHtmlSelect}}
 
{{SeeAlso:JHtmlSelect}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JHtmlSelect|Edit See Also]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[SeeAlso:JHtmlSelect|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Examples===
+
===User contributed notes===
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 57: Line 65:
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform]][[Category:Platform 11.1]][[Category:JHtmlSelect]]</noinclude>
+
<noinclude>[[Category:Platform JClasses]][[Category:Platform 11.1]][[Category:JHtmlSelect]]</noinclude>

Revision as of 13:52, 29 August 2012

The "API17" 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.

Joomla 11.1 JHtmlSelect[edit]

Description[edit]

Template:Description:JHtmlSelect [Edit Descripton]

Methods[edit]

Visibility Method name Description
public static booleanlist Generates a yes/no radio list.
public static genericlist Generates an HTML selection list.
public static groupedlist Generates a grouped HTML selection list from nested arrays.
public static integerlist Generates a selection list of integers.
public static optgroup Create a placeholder for an option group.
public static option Create an object that represents an option in an option list.
public static options Generates the option tags for an HTML select list (with no select tag surrounding the options).
public static radiolist Generates an HTML radio list.
  • Defined in libraries/joomla/html/html/select.php

Importing[edit]

jimport( 'joomla.html.html.select' );

See also[edit]

Template:SeeAlso:JHtmlSelect [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />