Skip to content

Commit

Permalink
TheCoder4eu/BootsFaces-OSP#919 added the reference section
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanrauh committed Mar 10, 2018
1 parent f1b3379 commit 7370b39
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/webapp/layout/Breadcrumbs.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@

<br/>
<h2><a id="reference_section">Reference section</a></h2>
<!--
<ui:include src="BreadcrumbsAttributes.xhtml" />
-->
<b:panel look="info" rendered="false">
<ui:include src="BreadcrumbsAttributes.xhtml" />
<b:panel look="info" rendered="false">
<f:facet name="heading">
<b>Skinning</b>
</f:facet>
Expand Down
84 changes: 84 additions & 0 deletions src/main/webapp/layout/BreadcrumbsAttributes.xhtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html>
<ui:fragment
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:b="http://bootsfaces.net/ui"
xmlns:ui="http://java.sun.com/jsf/facelets">

<b:panel look="info">
<f:facet name="heading">
<b>Attributes of &lt;b:breadcrumbs &gt;</b>
</f:facet>
<div class="table-responsive">
<table class="table table-striped table-hover"
style="background-color: #fff">
<thead>
<tr>
<th>Attribute</th>
<th>Default value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>binding</td>
<td>(none)</td>
<td>An EL expression referring to a server side UIComponent instance in a backing bean.</td>
</tr>
<tr>
<td>id</td>
<td>(none)</td>
<td>Unique identifier of the component in a namingContainer.</td>
</tr>
<tr>
<td>rendered</td>
<td>false</td>
<td>Boolean value to specify the rendering of the component, when set to false the component will not be rendered.</td>
</tr>
<tr>
<td>style</td>
<td>(none)</td>
<td>Inline style of the input element.</td>
</tr>
<tr>
<td>style-class<br />styleClass (alternative writing)</td>
<td>(none)</td>
<td>Style class of this element.</td>
</tr>
<tr>
<td>tooltip</td>
<td>(none)</td>
<td>The text of the tooltip.</td>
</tr>
<tr>
<td>tooltip-container<br />tooltipContainer (alternative writing)</td>
<td> body </td>
<td>Where is the tooltip div generated? That's primarily a technical value that can be used to fix rendering errors in special cases. Also see data-container in the documentation of Bootstrap. The default value is body.</td>
</tr>
<tr>
<td>tooltip-delay<br />tooltipDelay (alternative writing)</td>
<td>0 </td>
<td>The tooltip is shown and hidden with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay).</td>
</tr>
<tr>
<td>tooltip-delay-hide<br />tooltipDelayHide (alternative writing)</td>
<td>0 </td>
<td>The tooltip is hidden with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay).</td>
</tr>
<tr>
<td>tooltip-delay-show<br />tooltipDelayShow (alternative writing)</td>
<td>0 </td>
<td>The tooltip is shown with a delay. This value is the delay in milliseconds. Defaults to 0 (no delay).</td>
</tr>
<tr>
<td>tooltip-position<br />tooltipPosition (alternative writing)</td>
<td>(none)</td>
<td>Where is the tooltip to be displayed? Possible values: "top", "bottom", "right", "left", "auto", "auto top", "auto bottom", "auto right" and "auto left". Default to "bottom".</td>
</tr>
</tbody>
</table>
</div>
</b:panel>
</ui:fragment>

0 comments on commit 7370b39

Please sign in to comment.