Assume that I have a gadget with xml as:

<?xml version="1.0" encoding="UTF-8" ?>
<Module>
  <ModulePrefs title="Preferences for __UP_myname__" height="250" />
  <UserPref name="mychoice" display_name="List Params?" datatype="bool"/>

  <UserPref name="myname" display_name="Name" required="true"/>
  <UserPref name="mycolor" display_name="Color" default_value="Blue"
datatype="enum">

    <EnumValue value="Red"/>
    <EnumValue value="Blue"/>
    <EnumValue value="Green"/>
    <EnumValue value="Yellow"/>

    <EnumValue value="Pink"/>
    <EnumValue value="Orange"/>
    <EnumValue value="White"/>
  </UserPref>

  <Content type="url" href="http://www.example.com/params.php"/>
</Module>


In I run this gadget and click on settings button, then I will get a
check box, text box and a drop down list.
When I change these fields values and click on Save, to which URL
these values will be posted to?

Reply via email to