Difference between revisions of "Template:Drop down list/sandbox"

From blackwiki
Jump to navigation Jump to search
imported>Doctorjaythethird
(Create sandbox version of Template:Drop down list)
 
imported>Andrybak
m (move documentation to /doc subpage)
 
Line 18: Line 18:
 
|}</div></includeonly>
 
|}</div></includeonly>
  
<noinclude>{{documentation|content=
+
<noinclude>{{documentation}}</noinclude>
{{Template:Collapse Templates}}
 
==Usage==
 
This template can be transcluded to display a Drop down list. This template had 3 parameters (described below). '''The Id parameter''' is very important if you are using 2 drop down lists on the same page.
 
 
 
==Parameters==
 
This template contains 9 parameters for different purposes:
 
 
 
===Name===
 
This is the name parameter that shall display the name of the list, defaults to 'Text'. To set the name parameter type <code> <nowiki>{{Drop down list|Name=Name}}
 
</nowiki> </code> which will render as <br>{{Drop down list|Name=Name|id=name}}<br>
 
Examples:<br>
 
<code> <nowiki>{{Drop down list|Name=TW}} </nowiki> </code> renders as <br> <br>{{Drop down list|Name=TW|id=TW}}<br>
 
<code> <nowiki>{{Drop down list|Name=[[WP:TW|TW]]}} </nowiki> </code> renders as <br> <br>{{Drop down list|Name=[[WP:TW|TW]]|id=Twinkle}}
 
 
 
===Values===
 
The list can hold up to 8 values i.e the text within the list. To add the values type <code> <nowiki>{{Drop down list|Name=Name|Value1=Hello|Value2=Wikipedia|Value3=Blah!}} </nowiki> </code> and so on until
 
 
 
<code> <nowiki>Value8</nowiki> </code>. <br> The values support both Wikilinks and external links i.e you can also type <source lang="moin" inline>{{Drop down list|Name=Name|Value1=[[Hello]]|Value2=[[Wikipedia|'pedia]]|Value3=[https://www.google.co.in/ Google]}}</nowiki> </source> which will render as <br><br>{{Drop down list|Name=Name|Value1=[[Hello]]|Value2=[[Wikipedia|'pedia]]|Value3=[https://www.google.co.in/ Google]|Value4=|Value5=|Value6=|Value7=|Value8=|id=Example}}
 
 
 
===Id===
 
If you are using more than one drop down list on the same page this parameter is '''very important'''. The Id parameter for each list should be different and unique (if using more than one on the same page). To set the ID type <code> <nowiki>{{Drop down list|id=Your Id name}}</nowiki> </code>.
 
[[Category:Layout templates]]
 
}}</noinclude>
 

Latest revision as of 21:36, 26 February 2020


Template documentation[view] [edit] [history] [purge]

Usage

This template can be transcluded to display a Drop down list. This template had 3 parameters (described below). The Id parameter is very important if you are using 2 drop down lists on the same page.

Parameters

This template contains 9 parameters for different purposes:

Name

This is the name parameter that shall display the name of the list, defaults to 'Text'. To set the name parameter type {{Drop down list|Name=Name}} which will render as


Examples:

{{Drop down list|Name=TW}} renders as


{{Drop down list|Name=[[WP:TW|TW]]}} renders as


Values

The list can hold up to 8 values i.e the text within the list. To add the values type {{Drop down list|Name=Name|Value1=Hello|Value2=Wikipedia|Value3=Blah!}} and so on until

Value8 .
The values support both Wikilinks and external links i.e you can also type {{Drop down list|Name=Name|Value1=[[Hello]]|Value2=[[Wikipedia|'pedia]]|Value3=[https://www.google.co.in/ Google]}} which will render as


Id

If you are using more than one drop down list on the same page this parameter is very important. The Id parameter for each list should be different and unique (if using more than one on the same page). To set the ID type {{Drop down list|id=Your Id name}}

<div class="dropdown">
  <button class="dropbtn">Dropdown</button>
  <div class="dropdown-content">
    <a href="#">Link 1</a>
    <a href="#">Link 2</a>
    <a href="#">Link 3</a>
  </div>
</div>
.