Browse Source

HPCC-12621 Edits from review

Signed-off-by: Jim DeFabia <jamesdefabia@lexisnexis.com>
Jim DeFabia 10 years ago
parent
commit
e0b9485041
1 changed files with 4 additions and 1 deletions
  1. 4 1
      docs/ECLLanguageReference/ECLR_mods/Templ-WEBSERVICE.xml

+ 4 - 1
docs/ECLLanguageReference/ECLR_mods/Templ-WEBSERVICE.xml

@@ -26,7 +26,9 @@
 
             <entry>The FIELDS parameter specifies field sequence<indexterm>
                 <primary>field sequence</primary>
-              </indexterm> in WsECL Web forms.</entry>
+              </indexterm> in WsECL Web forms. This is an exclusive list. If
+            the FIELDS attribute is present, only the fields in the fieldslist
+            are displayed on the Web form in WsECL.</entry>
           </row>
 
           <row>
@@ -76,6 +78,7 @@
 Field1 := 1 : Stored('Field1');
 Field2 := 2 :Stored('Field2');
 AddThem := TRUE :STORED ('AddThem');
+HiddenValue := 12 :STORED ('HiddenValue'); //not in fieldlist, won't display on WsECl form
 IF(AddThem,OUTPUT(Field1+Field2),OUTPUT('Not Added'));
 </programlisting>