SlideShare a Scribd company logo
1 of 31
Download to read offline
Layouts and content views
Managing reusable UI components

Anahide Tchertchian




                                  1
Layouts and content views
●   Layouts concepts and implementation
●   Content view concepts
    ●   Folder content
    ●   Advanced search
    ●   Smart search
●   Layouts configuration
    ●   Studio
    ●   Showcase

                                          2
Layouts


          3
Layout Concepts
●   Forms
●   Layouts
●   Rows/columns
●   Widgets
●   Modes




                   4
Definitions: layout
<layout name="dublincore">
  <templates>
    <template mode="any">
      /layouts/layout_default_template.xhtml
    </template>
  </templates>
  <rows>
    <row>
      <widget>nature</widget>
    </row>
    <row>
      <widget>subjects</widget>
    </row>
  </rows>                                      5

</layout>
Definitions: widget 1/2
<widget name="title" type="text">
  <labels>
    <label mode="any">title</label>
  </labels>
  <translated>true</translated>
  <fields>
    <field>dc:title</field>
  </fields>
  <properties widgetMode="edit">
    <property name="required">true</property>
    <property name="styleClass">
      DataInputText
    </property>
  </properties>
</widget>                                       6
Definitions: widget 2/2
<widget name="created" type="datetime">
  <labels>
    <label mode="any">
      label.dublincore.created
    </label>
  </labels>
  <translated>true</translated>
  <fields>
    <field>dc:created</field>
  </fields>
  <properties widgetMode="any">
    <property name="pattern">
      #{nxu:basicDateAndTimeFormater()}
    </property>
  </properties>
  <widgetModes>
    <mode value="any">view</mode>
  </widgetModes>                          7

</widget>
Implementation with JSF
 Used technologies:
 ●   JSF: Java Server Faces
 ●   Facelets
 ●   EL: Expression language


 Implementation:
 ➔   Custom service
 ➔   Custom tag library using facelets templating
     features
                                                    8
Facelets usage


                 Output text

                 Input text
                 Error message




                                 9
Loose object binding

Binding between a document and a layout:

<nxl:layout name="header" mode="view"
  value="#{currentDocument}" />

After layout facelet handlers applied:

<h:outputText
  value="#{currentDocument.dc.title}" />



                                           10
Layout for a workflow task




                             11
Layout for any UI component




                              12
Content Views


                13
Content view usage
    Get a list of items and render them


●   Query with filters
●   Contextual parameters
●   Rendering of the list and content
●   Sorting and pagination



                                          14
Content view concepts
     Page provider    Search layout
       definition




              Page provider




              Result layout


                                      15
Page provider 1/2
<coreQueryPageProvider>
  <property name="coreSession">
    #{documentManager}
  </property>

 <pattern>
   SELECT * FROM Document WHERE ecm:parentId = ?
   AND ecm:isCheckedInVersion = 0
   AND ecm:mixinType != 'HiddenInNavigation'
   AND ecm:currentLifeCycleState != 'deleted'
 </pattern>
 <parameter>#{currentDocument.id}</parameter>

  <sort column="dc:title" ascending="true" />
  <pageSize>20</pageSize>
</coreQueryPageProvider>

                                                   16
Page provider 2/2
<coreQueryPageProvider>
  <property name="coreSession">
    #{documentManager}
  </property>

 <whereClause docType="AdvancedSearch">
   <predicate parameter="dc:title" operator="FULLTEXT">
     <field schema="advanced_search" name="title" />
   </predicate>
   …
 </whereClause>

  <sort column="dc:title" ascending="true" />
  <pageSize>20</pageSize>
</coreQueryPageProvider>


                                                          17
Content View
<contentView name="current_document_children">

 <searchLayout name="search_layout" />
 <searchDocument>#{searchDocument}</searchDocument>

 <coreQueryPageProvider>...</coreQueryPageProvider>

 <resultLayouts>
   <layout name="document_listing" />
 </resultLayouts>

</contentView>



                                                      18
Adaptability
●   Use standard layouts
●   Pluggable page provider to perform any
    kind of query




                                             19
Smart search addon demo




                          20
Smart search folder demo




                           21
Result layouts 1/2
●   Layouts iteration
●   Loose mapping between listing item and
    result layout
●   More information on layout rows/columns:
    ●   Column label
    ●   Sort




                                               22
Result layouts 2/2
Column selection




                     23
Layouts
configuration

                24
Layouts for widget types
    « Meta » layouts, or layouts for layouts
    configuration:
●   Studio configuration
●   Documentation
●   Preview




                                               25
Studio configuration




                       26
Documentation demo




                     27
Preview demo




               28
Next features
●   Listing layouts and content views
    configuration in Studio
●   GWT and Freemarker implementation of
    layouts and content views




                                           29
Developer documentation
●   http://doc.nuxeo.com/display/NXDOC/Layouts
●   http://doc.nuxeo.com/display/NXDOC/Content+views
●   http://doc.nuxeo.com/display/NXDOC/Search




                                                       30
Thank you!

Questions?



             31

More Related Content

Viewers also liked

Viewers also liked (7)

[Nuxeo World 2013] MONITORING AND PERFORMANCE - BENOIT DELBOSC
[Nuxeo World 2013] MONITORING AND PERFORMANCE - BENOIT DELBOSC[Nuxeo World 2013] MONITORING AND PERFORMANCE - BENOIT DELBOSC
[Nuxeo World 2013] MONITORING AND PERFORMANCE - BENOIT DELBOSC
 
Accelerate Digital Transformation with Enterprise DAM
Accelerate Digital Transformation with Enterprise DAMAccelerate Digital Transformation with Enterprise DAM
Accelerate Digital Transformation with Enterprise DAM
 
Building our App with React Native
Building our App with React NativeBuilding our App with React Native
Building our App with React Native
 
Using MongoDB to Build a Fast and Scalable Content Repository
Using MongoDB to Build a Fast and Scalable Content RepositoryUsing MongoDB to Build a Fast and Scalable Content Repository
Using MongoDB to Build a Fast and Scalable Content Repository
 
Redefine Your Digital Asset Strategy for 2017
Redefine Your Digital Asset Strategy for 2017Redefine Your Digital Asset Strategy for 2017
Redefine Your Digital Asset Strategy for 2017
 
Best Practices in Enterprise Video and Digital Asset Management
Best Practices in Enterprise Video and Digital Asset ManagementBest Practices in Enterprise Video and Digital Asset Management
Best Practices in Enterprise Video and Digital Asset Management
 
Recommendations for Complex Digital Asset Management
Recommendations for Complex Digital Asset ManagementRecommendations for Complex Digital Asset Management
Recommendations for Complex Digital Asset Management
 

Similar to Nuxeo World Session: Layouts and Content Views

Templates
TemplatesTemplates
Templates
soon
 

Similar to Nuxeo World Session: Layouts and Content Views (20)

Building Modern Websites with ASP.NET by Rachel Appel
Building Modern Websites with ASP.NET by Rachel AppelBuilding Modern Websites with ASP.NET by Rachel Appel
Building Modern Websites with ASP.NET by Rachel Appel
 
Templates
TemplatesTemplates
Templates
 
Tech talk live share extras extension modules feb 13
Tech talk live   share extras extension modules feb 13Tech talk live   share extras extension modules feb 13
Tech talk live share extras extension modules feb 13
 
Android Jetpack - Google IO Extended Singapore 2018
Android Jetpack - Google IO Extended Singapore 2018Android Jetpack - Google IO Extended Singapore 2018
Android Jetpack - Google IO Extended Singapore 2018
 
OpenCms Days 2015 Modern templates with nested containers
OpenCms Days 2015 Modern templates with nested containersOpenCms Days 2015 Modern templates with nested containers
OpenCms Days 2015 Modern templates with nested containers
 
Web components - An Introduction
Web components - An IntroductionWeb components - An Introduction
Web components - An Introduction
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 
Django at the Disco
Django at the DiscoDjango at the Disco
Django at the Disco
 
AngularDart Introduction
AngularDart IntroductionAngularDart Introduction
AngularDart Introduction
 
Backbone.js
Backbone.jsBackbone.js
Backbone.js
 
How to Webpack your Django!
How to Webpack your Django!How to Webpack your Django!
How to Webpack your Django!
 
Developing a Joomla 3.x Component using RAD FOF- Part 2: Front-end + demo - J...
Developing a Joomla 3.x Component using RAD FOF- Part 2: Front-end + demo - J...Developing a Joomla 3.x Component using RAD FOF- Part 2: Front-end + demo - J...
Developing a Joomla 3.x Component using RAD FOF- Part 2: Front-end + demo - J...
 
Workflow Essentials for Web Development
Workflow Essentials for Web DevelopmentWorkflow Essentials for Web Development
Workflow Essentials for Web Development
 
02.Designing Windows Phone Application
02.Designing Windows Phone Application02.Designing Windows Phone Application
02.Designing Windows Phone Application
 
Asp.Net Mvc
Asp.Net MvcAsp.Net Mvc
Asp.Net Mvc
 
Surviving UI Automation Armageddon with BELLATRIX.pptx
Surviving UI Automation Armageddon with BELLATRIX.pptxSurviving UI Automation Armageddon with BELLATRIX.pptx
Surviving UI Automation Armageddon with BELLATRIX.pptx
 
Web Components v1
Web Components v1Web Components v1
Web Components v1
 

More from Nuxeo

Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
Nuxeo
 

More from Nuxeo (20)

Own the Digital Shelf Strategies Food and Beverage Companies
Own the Digital Shelf Strategies Food and Beverage CompaniesOwn the Digital Shelf Strategies Food and Beverage Companies
Own the Digital Shelf Strategies Food and Beverage Companies
 
How DAM Librarians Can Get Ready for the Uncertain Future
How DAM Librarians Can Get Ready for the Uncertain FutureHow DAM Librarians Can Get Ready for the Uncertain Future
How DAM Librarians Can Get Ready for the Uncertain Future
 
How Insurers Fueled Transformation During a Pandemic
How Insurers Fueled Transformation During a PandemicHow Insurers Fueled Transformation During a Pandemic
How Insurers Fueled Transformation During a Pandemic
 
Manage your Content at Scale with MongoDB and Nuxeo
Manage your Content at Scale with MongoDB and NuxeoManage your Content at Scale with MongoDB and Nuxeo
Manage your Content at Scale with MongoDB and Nuxeo
 
Accelerate the Digital Supply Chain From Idea to Support
Accelerate the Digital Supply Chain From Idea to SupportAccelerate the Digital Supply Chain From Idea to Support
Accelerate the Digital Supply Chain From Idea to Support
 
Where are you in the DAM Continuum
Where are you in the DAM ContinuumWhere are you in the DAM Continuum
Where are you in the DAM Continuum
 
Customer Experience in 2021
Customer Experience in 2021Customer Experience in 2021
Customer Experience in 2021
 
L’IA personnalisée, clé d’une gestion de l’information innovante
L’IA personnalisée, clé d’une gestion de l’information innovanteL’IA personnalisée, clé d’une gestion de l’information innovante
L’IA personnalisée, clé d’une gestion de l’information innovante
 
Gérer ses contenus avec MongoDB et Nuxeo
Gérer ses contenus avec MongoDB et NuxeoGérer ses contenus avec MongoDB et Nuxeo
Gérer ses contenus avec MongoDB et Nuxeo
 
Le DAM en 2021 : Tendances, points clés et critères d'évaluation
Le DAM en 2021 : Tendances, points clés et critères d'évaluationLe DAM en 2021 : Tendances, points clés et critères d'évaluation
Le DAM en 2021 : Tendances, points clés et critères d'évaluation
 
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
Enabling Digital Transformation Amidst a Global Pandemic | Low-Code, Cloud, A...
 
Elevate your Customer's Experience and Stay Ahead of the Competition
Elevate your Customer's Experience and Stay Ahead of the CompetitionElevate your Customer's Experience and Stay Ahead of the Competition
Elevate your Customer's Experience and Stay Ahead of the Competition
 
Driving Brand Loyalty Through Superior Customer Experience
Driving Brand Loyalty Through Superior Customer Experience Driving Brand Loyalty Through Superior Customer Experience
Driving Brand Loyalty Through Superior Customer Experience
 
Drive Enterprise Speed and Scale with A Cloud-Native DAM
Drive Enterprise Speed and Scale with A Cloud-Native DAMDrive Enterprise Speed and Scale with A Cloud-Native DAM
Drive Enterprise Speed and Scale with A Cloud-Native DAM
 
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
The Big Picture: the Role of Video, Photography, and Content in Enhancing the...
 
How Creatives Are Getting Creative in 2020 and Beyond
How Creatives Are Getting Creative in 2020 and BeyondHow Creatives Are Getting Creative in 2020 and Beyond
How Creatives Are Getting Creative in 2020 and Beyond
 
Digitalisation : Améliorez la collaboration et l’expérience client grâce au DAM
Digitalisation : Améliorez la collaboration et l’expérience client grâce au DAMDigitalisation : Améliorez la collaboration et l’expérience client grâce au DAM
Digitalisation : Améliorez la collaboration et l’expérience client grâce au DAM
 
Reimagine Your Claims Process with Future-Proof Technologies
Reimagine Your Claims Process with Future-Proof TechnologiesReimagine Your Claims Process with Future-Proof Technologies
Reimagine Your Claims Process with Future-Proof Technologies
 
Comment le Centre Hospitalier Laborit dématérialise ses processus administratifs
Comment le Centre Hospitalier Laborit dématérialise ses processus administratifsComment le Centre Hospitalier Laborit dématérialise ses processus administratifs
Comment le Centre Hospitalier Laborit dématérialise ses processus administratifs
 
Accelerating the Packaging Design Process with Artificial Intelligence
Accelerating the Packaging Design Process with Artificial IntelligenceAccelerating the Packaging Design Process with Artificial Intelligence
Accelerating the Packaging Design Process with Artificial Intelligence
 

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 

Nuxeo World Session: Layouts and Content Views

  • 1. Layouts and content views Managing reusable UI components Anahide Tchertchian 1
  • 2. Layouts and content views ● Layouts concepts and implementation ● Content view concepts ● Folder content ● Advanced search ● Smart search ● Layouts configuration ● Studio ● Showcase 2
  • 4. Layout Concepts ● Forms ● Layouts ● Rows/columns ● Widgets ● Modes 4
  • 5. Definitions: layout <layout name="dublincore"> <templates> <template mode="any"> /layouts/layout_default_template.xhtml </template> </templates> <rows> <row> <widget>nature</widget> </row> <row> <widget>subjects</widget> </row> </rows> 5 </layout>
  • 6. Definitions: widget 1/2 <widget name="title" type="text"> <labels> <label mode="any">title</label> </labels> <translated>true</translated> <fields> <field>dc:title</field> </fields> <properties widgetMode="edit"> <property name="required">true</property> <property name="styleClass"> DataInputText </property> </properties> </widget> 6
  • 7. Definitions: widget 2/2 <widget name="created" type="datetime"> <labels> <label mode="any"> label.dublincore.created </label> </labels> <translated>true</translated> <fields> <field>dc:created</field> </fields> <properties widgetMode="any"> <property name="pattern"> #{nxu:basicDateAndTimeFormater()} </property> </properties> <widgetModes> <mode value="any">view</mode> </widgetModes> 7 </widget>
  • 8. Implementation with JSF Used technologies: ● JSF: Java Server Faces ● Facelets ● EL: Expression language Implementation: ➔ Custom service ➔ Custom tag library using facelets templating features 8
  • 9. Facelets usage Output text Input text Error message 9
  • 10. Loose object binding Binding between a document and a layout: <nxl:layout name="header" mode="view" value="#{currentDocument}" /> After layout facelet handlers applied: <h:outputText value="#{currentDocument.dc.title}" /> 10
  • 11. Layout for a workflow task 11
  • 12. Layout for any UI component 12
  • 14. Content view usage Get a list of items and render them ● Query with filters ● Contextual parameters ● Rendering of the list and content ● Sorting and pagination 14
  • 15. Content view concepts Page provider Search layout definition Page provider Result layout 15
  • 16. Page provider 1/2 <coreQueryPageProvider> <property name="coreSession"> #{documentManager} </property> <pattern> SELECT * FROM Document WHERE ecm:parentId = ? AND ecm:isCheckedInVersion = 0 AND ecm:mixinType != 'HiddenInNavigation' AND ecm:currentLifeCycleState != 'deleted' </pattern> <parameter>#{currentDocument.id}</parameter> <sort column="dc:title" ascending="true" /> <pageSize>20</pageSize> </coreQueryPageProvider> 16
  • 17. Page provider 2/2 <coreQueryPageProvider> <property name="coreSession"> #{documentManager} </property> <whereClause docType="AdvancedSearch"> <predicate parameter="dc:title" operator="FULLTEXT"> <field schema="advanced_search" name="title" /> </predicate> … </whereClause> <sort column="dc:title" ascending="true" /> <pageSize>20</pageSize> </coreQueryPageProvider> 17
  • 18. Content View <contentView name="current_document_children"> <searchLayout name="search_layout" /> <searchDocument>#{searchDocument}</searchDocument> <coreQueryPageProvider>...</coreQueryPageProvider> <resultLayouts> <layout name="document_listing" /> </resultLayouts> </contentView> 18
  • 19. Adaptability ● Use standard layouts ● Pluggable page provider to perform any kind of query 19
  • 22. Result layouts 1/2 ● Layouts iteration ● Loose mapping between listing item and result layout ● More information on layout rows/columns: ● Column label ● Sort 22
  • 25. Layouts for widget types « Meta » layouts, or layouts for layouts configuration: ● Studio configuration ● Documentation ● Preview 25
  • 29. Next features ● Listing layouts and content views configuration in Studio ● GWT and Freemarker implementation of layouts and content views 29
  • 30. Developer documentation ● http://doc.nuxeo.com/display/NXDOC/Layouts ● http://doc.nuxeo.com/display/NXDOC/Content+views ● http://doc.nuxeo.com/display/NXDOC/Search 30