当前位置: 首页 > 网络学院 > XML相关教程 > XForms > XForms 选择控件

XForms
XForms 介绍
XForms 模型
XForms 命名空间
XForms 实例
XForms XPath
XForms 输入控件
XForms 选择控件
XForms 数据类型
XForms 属性
XForms 行为(Actions)
XForms 函数
Xforms 数据类型参考

XForms 选择控件


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 641 ::
收藏到网摘: n/a

The user interface of XForms uses XForms controls.
XForms 用户界面使用 XForms 控件。


The Select1 Control
Select1控件

The select1 control is used for selecting one item from a list of items:
select1 控件用于从一个项目列表中选取一个项目:

<select1 ref="status">

<label>Status:</label>
<item>
<label>Male</label>
<value>M</value>

</item>
<item>
<label>Female</label>
<value>F</value>
</item>

</select1>

In the example above, the user can choose one of to values, Male or Female. The data stored in the XForms instance (XML document) will be M or F.
在上面的例子中,用户可在两个值中选择其中之一,Male 或者 Female。存储在 XForms 实例(XML 文档)中的数据将是 M 或 F。

Try it yourself
自己试试吧


The Select Control
Select 控件

The select control is used for selecting items (one or many) from a list of items:
Select 控件用于从一个项目列表中选取项目(一个或多个):

<select ref="languages">
<label>Languages:</label>
<item>

<label>English</label>
<value>E</value>
</item>
<item>
<label>French</label>

<value>F</value>
</item>
<item>
<label>Spanish</label>
<value>S</value>

</item>
<item>
<label>German</label>
<value>G</value>
</item>

</select>

In the example above, the user can choose one or many of the values.
在上述例子中,用户可以选择一个或多个值。


The Range Control
Range 控件

The range control is used for selecting a value from a range of values:
Range 控件用于从值的一个范围内选取值:

<range ref="length" start="0" end="100" step="5">

<label>Length:</label>
</range>

In the example above, the user can choose a value between 0 and 100 in steps of 5.
在上面的例子中,用户可按照步长 5 选择介于 0 到 100 之间的某个值。

评论 (0) All

登陆 | 还没注册?