Created
May 15, 2015 16:35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dvt:nBox id="nb1" var="ent" rowsTitle="Country" | |
value="#{bindings.EmpDetailsView1.collectionModel}" | |
columnsTitle="Salary Level"> | |
<f:facet name="rows"> | |
<af:group id="g1"> | |
<dvt:nBoxRow id="nbr3" value="OTHER" | |
label="Rest of the World"/> | |
<dvt:nBoxRow id="nbr2" value="UK" | |
label="United Kingdom"/> | |
<dvt:nBoxRow id="nbr1" value="US" | |
label="United States of America"/> | |
</af:group> | |
</f:facet> | |
<f:facet name="columns"> | |
<af:group id="g2"> | |
<dvt:nBoxColumn id="nbc1" value="lower" | |
label="Lower (max 5,000)"/> | |
<dvt:nBoxColumn id="nbc2" value="middle" | |
label="Middle (5,000 - 10,000)"/> | |
<dvt:nBoxColumn id="nbc3" value="upper" | |
label="Upper (min 10,000)"/> | |
</af:group> | |
</f:facet> | |
<dvt:nBoxNode id="nbn1" column="#{ent.SalaryLevel}" | |
secondaryLabel="#{ent.LastName}" | |
label="#{ent.FirstName}" row="#{ent.CountryDiscriminator}" | |
shortDesc="Job Title: #{ent.JobTitle}<br/>Salary: #{ent.Salary}<br/>Country: #{ent.CountryName} (#{ent.StateProvince})" | |
> | |
<dvt:attributeGroups value="#{ent.JobTitle}" type="color" | |
label="#{ent.JobTitle}" id="ag1" | |
sectionLabel="Job Title"/> | |
<f:facet name="indicator"> | |
<dvt:marker id="m2"> | |
<dvt:attributeGroups value="#{ent.DepartmentId}" | |
type="shape" | |
label="#{ent.DepartmentName}" | |
id="ag2" sectionLabel="Department"/> | |
</dvt:marker> | |
</f:facet> | |
<f:facet name="icon"/> | |
</dvt:nBoxNode> | |
</dvt:nBox> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment