add required attribute to csvprovider ui.xml

This commit is contained in:
hmm 2014-08-28 16:42:28 +08:00
parent 0d42c3e97a
commit a4451435a1
1 changed files with 7 additions and 7 deletions

View File

@ -3,32 +3,32 @@
<ui>
<plugin name="CsvProvider">
<params>
<param name="fileName" label="The name of the input file(Required)">
<param name="fileName" label="The name of the input file" required="true">
<file />
</param>
<param name="separator"
label="The separator of the input file and the following fieldNames">
label="The separator of the input file and the following fieldNames" required="true">
<field size="7" />
</param>
<param name="fieldNames" label="fields names:">
<param name="fieldNames" label="fields names:" required="true">
<nfield />
</param>
<param name="shared" label="to share the file descriptor">
<param name="shared" label="to share the file descriptor" required="false">
<checkbox>
<choice value="enable" default="false" />
</checkbox>
</param>
<param name="loop" label="when to the EOF, is in loop">
<param name="loop" label="when to the EOF, is in loop" required="false">
<checkbox>
<choice value="enable" default="true" />
</checkbox>
</param>
<param name="loadAtRuntime" label="is to load it at runtime">
<param name="loadAtRuntime" label="is to load it at runtime" required="true">
<checkbox>
<choice value="loadAtRuntime" default="true" />
</checkbox>
</param>
<param name="commentPrefix" label="perfix of the commnet">
<param name="commentPrefix" label="perfix of the commnet" required="false">
<nfield></nfield>
</param>
</params>