28 lines
889 B
Perl
28 lines
889 B
Perl
package WebGUI::i18n::English::Macro_FormParam;
|
|
|
|
our $I18N = {
|
|
|
|
'macroName' => {
|
|
message => q|Form Parameter|,
|
|
lastUpdated => 1128838349,
|
|
},
|
|
|
|
'form param title' => {
|
|
message => q|Form Parameter Macro|,
|
|
lastUpdated => 1112466408,
|
|
},
|
|
|
|
'form param body' => {
|
|
message => q|
|
|
|
|
<p><b>^FormParam();</b><br />
|
|
This macro is mainly used in generating dynamic queries in SQL Reports. Using this macro, you can pull the value of any form field simply by specifying the name of the form field, like this: ^FormParam("phoneNumber");
|
|
</p>
|
|
<p>If the macro is used to pull data from a form field that returns multiple values, like a dropdown list, then only the first value will be returned.</p>
|
|
<p>This Macro may be nested inside other Macros if the text returned does not contain commas or quotes.</p>
|
|
|,
|
|
lastUpdated => 1168622375,
|
|
},
|
|
};
|
|
|
|
1;
|