<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffcc" text="#000000">
Hello all,<br>
<br>
I have a simple xsd schema for employee data:<br>
<br>
    <xsd:complexType name="OpenCmsCompanyStaff"><br>
        <xsd:sequence><br>
            <xsd:element name="Image" type="OpenCmsImage" /><br>
            <xsd:element name="Text" type="OpenCmsHtml" />      <br>
        </xsd:sequence><br>
        <xsd:attribute name="language" type="OpenCmsLocale"
use="required"/><br>
    </xsd:complexType><br>
    <br>
The ImageWidget has a description field which I want to use for the
name of the employee.<br>
<br>
Problem: <br>
I want to map the employee name (image description) to the title
property of the structured content file.<br>
This does not work:<br>
<br>
<mappings><br>
    <mapping element="Image" mapto="property:Title" /><br>
</mappings><br>
<br>
Any idea how to map the image description?<br>
<br>
best regards,<br>
Oliver<br>
</body>
</html>