add required attribute to csvprovider ui.xml
This commit is contained in:
parent
0d42c3e97a
commit
a4451435a1
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue