Examples/Parameter: listattr (example 1): Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
imported>FrozenPlum
m (update to match, the labelling was not super helpful)
imported>FrozenPlum
No edit summary
Line 6:
==Example==
 
This will selectselects articles in [[:Category:Countries in Africa]] or [[:Category:Countries in Europe]] theand categoriesorders arethem listedby in''category'' sorted(which orderis andused thein titlescombination are replaced by appropriate linkswith <code>headingmode</code> is set to ''definition'' soput the headings appearcategory as terms/namesthe header). By default, <code>{{DPL|mode}}</code> is set to ''unorderedordered'' forwhich causes the articles listed under the headings,categories soto they arebe bulletednumbered. The <code>listattrhlistattr</code> isadds setformatting toat havethe aheading/top bluelevel, CSSenclosing classall whichother colorsitems; allfor itemsthat, inan theID, unorderedorange listcolor, and other styles are given. <code>itemattrhitemattr</code> isadds setan toID, applycolor apink/red classcolor, and aother fontstyles styleto (italic),the whichnext corresponding list item heading. <code>listattr</code> applies to eachlist individual'''type''' elements, in this case the ordered (ol) list itemelements, coloring them blue.
 
<pre>
{{#dpl:
|category = Countries in Africa¦Countries in Europe
|ordermethod = category,titlepagetouched
|headingmode = definition
|countmode = 2ordered
|listattr = id="ul-example" class="dpl-blue-background"
|itemattrhlistattr = id="dl-example" class="lidpl-exampleorange-background" style= "font-stylesize:17px; italicborder:1px solid orange; padding:3px;"
|hitemattr = id="list-item-heading-attrubite" style="background-color:pink; border:1px solid red; padding:3px;"
|count = 2
|listattr = id="ulol-example" class="dpl-blue-background" style="border:1px solid blue; padding:3px;"
|count = 23
}}
</pre>
Line 23 ⟶ 25:
{{#dpl:
|category = Countries in Africa¦Countries in Europe
|ordermethod = category,titlepagetouched
|headingmode = definition
|mode = ordered
|listattr = id="ul-example" class="dpl-blue-background"
|itemattrhlistattr = id="dl-example" class="lidpl-exampleorange-background" style= "font-stylesize:17px; italicborder:1px solid orange; padding:3px;"
|hitemattr = id="list-item-heading-attrubite" style="background-color:pink; border:1px solid red; padding:3px;"
|count = 2
|listattr = id="ulol-example" class="dpl-blue-background" style="border:1px solid blue; padding:3px;"
|count = 3
}}
<noinclude>
Line 34 ⟶ 38:
[[Category:Uses ordermethod parameter]]
[[Category:Uses headingmode parameter]]
[[Category:Uses itemattrmode parameter]]
[[Category:Uses hlistattr parameter]]
[[Category:Uses hitemattr parameter]]
[[Category:Uses listattr parameter]]
[[Category:Uses itemattr parameter]]
[[Category:Uses count parameter]]
</noinclude>

Revision as of 10:29, 24 April 2022

Please do not edit this page unless you're wanting to edit the manual itself, it is an example included in the manual.

Example

This selects articles in Category:Countries in Africa or Category:Countries in Europe and orders them by category (which is used in combination with headingmode to put the category as the header). mode is set to ordered which causes the articles listed under the categories to be numbered. The hlistattr adds formatting at the heading/top level, enclosing all other items; for that, an ID, orange color, and other styles are given. hitemattr adds an ID, color pink/red color, and other styles to the next corresponding list item heading. listattr applies to list type elements, in this case the ordered (ol) list elements, coloring them blue.

{{#dpl:
|category    = Countries in Africa¦Countries in Europe
|ordermethod = category,pagetouched
|headingmode = definition
|mode        = ordered
|hlistattr   = id="dl-example" class="dpl-orange-background" style="font-size:17px; border:1px solid orange; padding:3px;"
|hitemattr   = id="list-item-heading-attrubite" style="background-color:pink; border:1px solid red; padding:3px;"
|listattr    = id="ol-example" class="dpl-blue-background" style="border:1px solid blue; padding:3px;"
|count       = 3
}}

Result

{{#dpl: |category = Countries in Africa¦Countries in Europe |ordermethod = category,pagetouched |headingmode = definition |mode = ordered |hlistattr = id="dl-example" class="dpl-orange-background" style="font-size:17px; border:1px solid orange; padding:3px;" |hitemattr = id="list-item-heading-attrubite" style="background-color:pink; border:1px solid red; padding:3px;" |listattr = id="ol-example" class="dpl-blue-background" style="border:1px solid blue; padding:3px;" |count = 3 }}