XSLTools

docs/multivalue.html

389:c78d5648e820
2005-11-08 paulb [project @ 2005-11-08 19:01:58 by paulb] Added scripts (although they are not yet used).
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">     2 <html xmlns="http://www.w3.org/1999/xhtml"><head>     3   <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type" />     4        5   <title>Creating Applications: Adding Multivalued Fields</title><meta name="generator" content="amaya 8.1a, see http://www.w3.org/Amaya/" />     6   <link href="styles.css" rel="stylesheet" type="text/css" /></head>     7      8 <body>     9 <h1>Creating Applications: Adding Multivalued Fields</h1>    10 <p>Although some applications only require multiple-choice fields where    11 only a single value may be chosen, in many situations it is desirable    12 to be able to choose an arbitrary number of values for a particular    13 field. However, up&nbsp;to this point, we have been content to    14 represent form data using a single attribute on a single element to    15 represent any given field value. With multivalued fields, we must    16 choose a different strategy in using XML to represent such information.</p>    17 <p>Let us consider permitting multiple type values to be associated    18 with our items. We revise our <a href="data.html">form data structure</a>    19 to    20 be the following:</p>    21 <pre>&lt;?xml version="1.0"?&gt;<br />&lt;structure&gt;<br />  &lt;item value="some value"&gt;<br />    &lt;type&gt;<br />      &lt;type-enum value="some type"/&gt;<br />      &lt;type-enum value="some other type"/&gt;<br />    &lt;/type&gt;<br />    &lt;subitem subvalue="some other value"/&gt;<br />  &lt;/item&gt;<br />&lt;/structure&gt;</pre>    22 <h2>Multivalued Fields</h2>    23 <p>We shall now take advantage of those HTML form fields which permit    24 users to select one    25 or many values presented in a list or menu.</p>    26 <form method="post" action="" name="single">    27   <p>Some item:&nbsp;<input name="value" value="some value" /><input name="remove" value="Remove" type="submit" /></p>    28   <p>Item type:    29   <select multiple="multiple" name="type"><option>(Not selected)</option><option>Important</option><option>Not important</option><option>Personal</option></select>    30   </p>    31   <p>Itself containing more items:</p>    32   <p>Sub-item: <input name="subvalue" value="some other value" /><input name="remove2" value="Remove" type="submit" /></p>    33 </form>    34 From the&nbsp;item type list many value may now be selected.    35 <p>Taking the&nbsp;example HTML code from before, we can add a    36 definition of this new list to the template to produce something    37 like this:</p>    38 <pre>&lt;html xmlns="http://www.w3.org/1999/xhtml"<br />      xmlns:template="http://www.boddie.org.uk/ns/xmltools/template"&gt;<br />&lt;head&gt;<br />  &lt;title&gt;Example&lt;/title&gt;<br />&lt;/head&gt;<br />&lt;body template:element="structure"&gt;<br />&lt;form action="" method="POST"&gt;<br /><br />&lt;!-- Template text between the start and the interesting part. --&gt;<br /><br />&lt;div template:element="item"&gt;<br />  &lt;p&gt;<br />    Some item: &lt;input template:attribute-field="value" name="..." type="text" value="..." /&gt;<br />    &lt;input name="..." template:selector-field="remove" type="submit" value="Remove" /&gt;<br />  &lt;/p&gt;<br />  &lt;p&gt;<br />    Item type:<br />    &lt;select name="..." <span style="font-weight: bold;">template:multiple-choice-list-field="type,type-enum,value"</span> <span style="font-weight: bold;">multiple="multiple"</span>&gt;<br />      &lt;option <span style="font-weight: bold;"><span style="font-family: monospace;">template:multiple-choice-list-value="type-enum,value,selected"</span></span> value="..." /&gt;<br />    &lt;/select&gt;<br />  &lt;/p&gt;<br />  &lt;p&gt;<br />    Itself containing more items:<br />  &lt;/p&gt;<br />  &lt;p template:element="subitem"&gt;<br />    Sub-item: &lt;input template:attribute-field="subvalue" name="..." type="text" value="..." /&gt;<br />    &lt;input name="..." template:selector-field="remove2" type="submit" value="Remove" /&gt;<br />  &lt;/p&gt;<br />  &lt;p&gt;<br />    &lt;input name="..." template:selector-field="add2,subitem" type="submit" value="Add subitem" /&gt;<br />  &lt;/p&gt;<br />&lt;/div&gt;<br />&lt;p&gt;<br />  &lt;input name="..." template:selector-field="add,item" type="submit" value="Add item" /&gt;<br />&lt;/p&gt;<span style="font-weight: bold;"><br /><br /></span>&lt;!-- Template text between the interesting part and the end. --&gt;<br /><br />&lt;/form&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;</pre>    39 <p>From the previous <a href="multiple.html">single-valued case</a>,    40 some crucial changes have been made:</p>    41 <ol>    42   <li>The&nbsp;<code>select</code> element remains mapped onto the&nbsp;<code>type</code>    43 element in the form data structure. However, we use a different attribute,&nbsp;<code>template:multiple-choice-list-field</code>, to indicate that a&nbsp;<code>type</code>    44 element is created when the form data is submitted, but instead of a single value being added to the <code>value</code> attribute of that one element, a separate&nbsp;<code>type-enum</code>    45 element is created within the&nbsp;<code>type</code>    46 element with a value in its <code>value</code> attribute <span style="font-style: italic;">for each value submitted</span>. This means that many&nbsp;<code>type-enum</code>    47 elements may be created within the&nbsp;<code>type</code>    48 element, and each one of them will have a different <code>value</code> attribute.</li>    49   <li>Of course, the&nbsp;<code>select</code> element now has a&nbsp;<code>multiple</code>    50 attribute defined to permit multiple value selections.</li>    51   <li>Inside the&nbsp;<code>select</code> element, the <code>option</code>    52 element now employs the <code>template:multiple-choice-list-value</code> annotation.</li>    53 </ol>    54 <h2>Output Structures</h2>    55 <p>Unlike in the single-valued case, the revised the form data    56 structure for input is almost the same as the structure used by the    57 template. Indeed, the subtle differences cannot be represented in our    58 simplistic presentation of the structure:</p>    59 <pre>&lt;?xml version="1.0"?&gt;<br />&lt;structure&gt;<br />  &lt;item value="some value"&gt;<br />    &lt;type&gt;<br />      &lt;type-enum value="some type"/&gt;<br />      &lt;type-enum value="some other type"/&gt;<br />    &lt;/type&gt;<br />    &lt;subitem subvalue="some other value"/&gt;<br />  &lt;/item&gt;<br />&lt;/structure&gt;</pre>    60 <p>In fact, the principal difference arises through the number of&nbsp;<code>type-enum</code>    61 elements that occur in the input, representing the values selected by    62 the user, and the number that occur in the output, representing the    63 complete range of values available for selection.    64 </p>    65 <h3>Presenting the Extra Values</h3>    66 <p>In most respects, the presentation of the extra values is the same    67 as in the single-valued case. The result of the presentation of the    68 extra values is that the&nbsp;<code>type</code> element in the    69 this example&nbsp;structure fragment...</p>    70 <pre>&lt;type&gt;<br />  &lt;type-enum value="1"/&gt;<br />  &lt;type-enum value="2" value-is-set="true"/&gt;<br />  &lt;type-enum value="3" value-is-set="true"/&gt;<br />&lt;/type&gt;<br /></pre>    71 <p>...is transformed into something resembling this HTML code:</p>    72 <pre>&lt;select name="..." multiple="multiple"&gt;<br />  &lt;option value="1"&gt;1&lt;/option&gt;<br />  &lt;option value="2" selected="selected"&gt;2&lt;/option&gt;<br />  &lt;option value="3" selected="selected"&gt;3&lt;/option&gt;<br />&lt;/select&gt;<br /></pre>    73 <p>Above, the special&nbsp;<code>value-is-set</code>    74 attribute is an XSLForms mechanism to remember which values were set.    75 Fortunately, the document initialisation mechanism automatically    76 distinguishes between different multiple-choice field types and    77 understands where the above approach needs to be employed.</p>    78 <ul>    79 </ul><h3>Updating the Web Resource</h3>    80 <p>To update the special WebStack resource,&nbsp;we    81 now need to modify a few of the class attributes and to add a few    82 others:</p>    83 <pre>    template_resources = {<br />        "structure" : ("structure_multivalue_template.xhtml", "structure_output.xsl")<br />        }<br /></pre>    84 <p>With these adjustments, it should now be possible to manipulate the    85 items and subitems whilst specifying multiple type values on each item.    86 Note that it may be necessary to remove the old stylesheet for    87 producing output,&nbsp;<code>structure_output.xsl</code>, so that the    88 multivalue version of the template is taken into use.</p>    89 <h2>Further Reading</h2>    90 <p>Now that we have designed and implemented a simple application, it    91 may be worth reading some <a href="advice.html">recommendations</a>    92 about developing your own applications.</p>    93 </body></html>