hi,
below is a simple example of xforms form taken from wikibooks.org.
how to transform this page into a gadget? i know i have to remove
<html>,
<head>  and <body> tags. but where then to put namespace
declaractions?
url type gadget works fine, but i would like to make a html type
gadget.


<html
 xmlns="http://www.w3.org/1999/xhtml";
 xmlns:xf="http://www.w3.org/2002/xforms";>
   <head>
      <title>XForms inputs with labels</title>
      <xf:model>
         <xf:instance xmlns="">
            <data>
               <PersonGivenName/>
               <PersonSurName/>
            </data>
         </xf:instance>
      </xf:model>
   </head>
   <body>
      <p>Enter your first name, and last name.</p>
         <xf:input ref="PersonGivenName" incremental="true">
            <xf:label>Input First-Name:</xf:label>
            <xf:hint>Also known as given name.</xf:hint>
         </xf:input>
         <br/>
         <xf:input ref="PersonSurName" incremental="true">
            <xf:label>Input Last Name:</xf:label>
            <xf:hint>Also known as sur name or family name.</xf:hint>
         </xf:input>
         <br/>
         <br/>
         Output First Name: <b><xf:output ref="PersonGivenName"/></b>
         <br/>
         Output Last Name: <b><xf:output ref="PersonSurName"/></b>
      <p>Note that as you type the model output will be updated.</p>
   </body>
</html>

input boxes are not displayed at all, just text from say paragraphs,
labels, and hints:

Enter your first name, and last name.
Input First-Name: Also known as given name.
Input Last Name: Also known as sur name or family name.

Output First Name:
Output Last Name:

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iGoogle Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Gadgets-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to