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> <ui>
<plugin name="CsvProvider"> <plugin name="CsvProvider">
<params> <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 /> <file />
</param> </param>
<param name="separator" <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" /> <field size="7" />
</param> </param>
<param name="fieldNames" label="fields names:"> <param name="fieldNames" label="fields names:" required="true">
<nfield /> <nfield />
</param> </param>
<param name="shared" label="to share the file descriptor"> <param name="shared" label="to share the file descriptor" required="false">
<checkbox> <checkbox>
<choice value="enable" default="false" /> <choice value="enable" default="false" />
</checkbox> </checkbox>
</param> </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> <checkbox>
<choice value="enable" default="true" /> <choice value="enable" default="true" />
</checkbox> </checkbox>
</param> </param>
<param name="loadAtRuntime" label="is to load it at runtime"> <param name="loadAtRuntime" label="is to load it at runtime" required="true">
<checkbox> <checkbox>
<choice value="loadAtRuntime" default="true" /> <choice value="loadAtRuntime" default="true" />
</checkbox> </checkbox>
</param> </param>
<param name="commentPrefix" label="perfix of the commnet"> <param name="commentPrefix" label="perfix of the commnet" required="false">
<nfield></nfield> <nfield></nfield>
</param> </param>
</params> </params>