Creating a Smart View Process through a template - Cloud - 7.3

Talend Studio User Guide

Version
Cloud
7.3
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Cloud
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Studio
Content
Design and Development
Last publication date
2024-02-13
Available in...

Data Fabric

MDM Platform

About this task

A Smart View uses an XSLT step to render the HTML presentation from the incoming XML record. The easiest thing to do is to create an HTML template with hard-coded values outside Talend Studio:

<tr>
<td>Product Name</td><td>PROD NAME</td>
<!-- etc -->
</tr>

Then copy/paste this template into the body of the XSLT stylesheet in the Process editor, and replace the hard-coded value by <xsl:value-of> statements:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">  
    <xsl:output method="html" indent="yes"/>  
    <xsl:template match="/" priority="1"> 
        <html> 
            <head> 
                <title>Product</title> 
            </head>  
            <body> 
<tr>
<td>Product Name</td><td><xsl:value-of select="Product/Name"/></td>
<!-- etc -->
</tr>
            </body> 
        </html> 
   </xsl:template> 
</xsl:stylesheet>

Use, for instance, PHPform to create a web template of your form. A web template consists of one or several html files in addition to the resources (JavaScript, CSS, images, etc.). The resources must be accessible from within MDM so you need to place them in <TomcatPath>/webapps/ where <TomcatPath> designates the path where Tomcat has been installed.

Procedure

  1. In <TomcatPath>/webapps/, create a new folder called smartview and then unzip the web template in another new folder called Product (that is, in <TomcatPath>/webapps/smartview/Product/).
    Your form should now be accessible through: http://localhost:8180/smartview/Product/form.html.
  2. Open the form in a text editor and check the html elements.
    XSLT is XML, and XML is not as lenient as html. You will find start tags with no end tags (meta, img, link, etc.). Make sure all html elements are written with start and end tags.
  3. Fix the URL to the JS, CSS and images. Change all the src attributes to point to: /smartview/Product/<resource> instead of just <resource>. For instance:
    Change:
    <script type="text/javascript" src="view.js"></script>
    
    to: <script type="text/javascript" src="/smartview/Product/view.js"></script>.
  4. Create a Smart View Process in Talend Studio as outlined in Creating a "default" Smart View of a data record and call it Smart_view_Product.
  5. Change <xsl:template match="/"> to <xsl:template match="/Product">, assuming the entity is Product.
  6. Copy the html code, without <!DOCTYPE>, from the html tag and paste it within the <xsl:template match="/Product"> element. Overwrite anything that was already within the <xsl:template> element:
  7. Set the field values with the actual values extracted from the Product record using the <xsl:value-of> statement. To ask XSLT to output an attribute, use the <xsl:attribute> statement.

Results

As an example, here is the html code before the change:

<label class="description" for="element_2">Price
</label>
<div>
    <input id="element_2" name="element_2" class="element text   medium"
type="text" maxlength="255" value=""/>
</div>

And after the change:

<label class="description" for="element_2">Price
</label>
<div>
    <input id="element_2" name="element_2" class="element text medium"
type="text" maxlength="255">
<xsl:attribute name="value"><xsl:value-of select="Price"/></xsl:attribute>
    </input>
</div>

This tells XSLT to issue a "value" attribute within the <input> tag and to fetch the value of this attribute from the Price element of the Product record.