Diferença: VarFORMFIELD (1 vs. 9)

Versão 931 Dec 2017 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"

FORMFIELD{"fieldname"} -- render a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
    rev="..." Get the form field value from the specified topic revision, range "1" to top revision of topic. "0" is equivalent to the top revision The rev URL parameter value if present, otherwise the top revision
    format="..." Format string. Supported variables:
    $value - form field value
    $value(20, -<br />) - value hyphenated every 20 characters using separator -<br />
    $value(30, ...) - value shortened to 30 characters
    $length - length of value (can be used to test if value is set)
    $title - raw field name (includes space and other special characters)
    $name - field name (sanitized title)
    $attributes - form field attributes
    $formtopic - name of form definition topic
    "$value"
    default="..." Text shown when no value is defined for the field ""
    alttext="..." Text shown when field is not found in the form ""
    newline="$br" Convert newlines in textarea to other delimiters. Variable $br expands to <br /> tag, and $n to a newline. Other text is encoded based on encode parameter. no conversion
    encode="html" Encode special characters into HTML entities. If a FORMFIELD is passed into an HTML form field it should be encoded as "html". Additional encodings available: encode="quote", encode="moderate", encode="safe", encode="entity", encode="url" and encode="csv". See ENCODE for details. "" (no encoding)
Alterado:
<
<
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field not found"}%
  • Example: %FORMFIELD{"Title" topic="%INCLUDINGTOPIC%" }%
>
>
  • Example: %FORMFIELD{ "ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field not found" }%
  • Example: %FORMFIELD{ "Title" topic="%INCLUDINGTOPIC%" }%
 
    • Note: Specify topic="%INCLUDINGTOPIC%" if you have a base topic that includes a report topic, and in the report topic you want to reference a field of the base topic
Added:
>
>
  • Example: %FORMFIELD{ "LastName" topic="%USERSWEB%.%WIKINAME%" encode="safe" }%
    • Note: Returns the "LastName" field from your profile page TWikiGuest
    • TIP Tip: Use encode="safe" to guard against Cross-Site Scripting (XSS) attacks
 
Alterado:
<
<
>
>
 

Versão 824 Oct 2015 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"
Alterado:
<
<

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

>
>

FORMFIELD{"fieldname"} -- render a field in the form attached to some topic

 
  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
    rev="..." Get the form field value from the specified topic revision, range "1" to top revision of topic. "0" is equivalent to the top revision The rev URL parameter value if present, otherwise the top revision
    format="..." Format string. Supported variables:
    $value - form field value
    $value(20, -<br />) - value hyphenated every 20 characters using separator -<br />
    $value(30, ...) - value shortened to 30 characters
    $length - length of value (can be used to test if value is set)
    $title - raw field name (includes space and other special characters)
    $name - field name (sanitized title)
    $attributes - form field attributes
    $formtopic - name of form definition topic
    "$value"
    default="..." Text shown when no value is defined for the field ""
    alttext="..." Text shown when field is not found in the form ""
    newline="$br" Convert newlines in textarea to other delimiters. Variable $br expands to <br /> tag, and $n to a newline. Other text is encoded based on encode parameter. no conversion
    encode="html" Encode special characters into HTML entities. If a FORMFIELD is passed into an HTML form field it should be encoded as "html". Additional encodings available: encode="quote", encode="moderate", encode="safe", encode="entity", encode="url" and encode="csv". See ENCODE for details. "" (no encoding)
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field not found"}%
Added:
>
>
  • Example: %FORMFIELD{"Title" topic="%INCLUDINGTOPIC%" }%
    • Note: Specify topic="%INCLUDINGTOPIC%" if you have a base topic that includes a report topic, and in the report topic you want to reference a field of the base topic
 
  • Example: <input type="text" name="Address" value="%FORMFIELD{ "Address" encode="html" }%" />
    • Note: It is easier to use EDITFORMFIELD for custom input fields
Alterado:
<
<
>
>
 

Versão 722 Mar 2014 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
    rev="..." Get the form field value from the specified topic revision, range "1" to top revision of topic. "0" is equivalent to the top revision The rev URL parameter value if present, otherwise the top revision
    format="..." Format string. Supported variables:
    $value - form field value
    $value(20, -<br />) - value hyphenated every 20 characters using separator -<br />
    $value(30, ...) - value shortened to 30 characters
    $length - length of value (can be used to test if value is set)
    $title - raw field name (includes space and other special characters)
    $name - field name (sanitized title)
    $attributes - form field attributes
    $formtopic - name of form definition topic
    "$value"
    default="..." Text shown when no value is defined for the field ""
    alttext="..." Text shown when field is not found in the form ""
    newline="$br" Convert newlines in textarea to other delimiters. Variable $br expands to <br /> tag, and $n to a newline. Other text is encoded based on encode parameter. no conversion
Alterado:
<
<
encode="html" Encode special characters into HTML entities. If a FORMFIELD is passed into an HTML form field it should be encoded as "html". Additional encodings available: encode="quote", encode="moderate", encode="safe", encode="entity" and encode="url". See ENCODE for details. "" (no encoding)
>
>
encode="html" Encode special characters into HTML entities. If a FORMFIELD is passed into an HTML form field it should be encoded as "html". Additional encodings available: encode="quote", encode="moderate", encode="safe", encode="entity", encode="url" and encode="csv". See ENCODE for details. "" (no encoding)
 

Versão 618 Jul 2013 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
Alterado:
<
<
format="..." Format string. Variable $value expands to the field value, $title to the raw field name, $name to the field name, $attributes to the attributes, $type to the form field type, $size to the size, and $definingTopic to the form definition topic. "$value"
>
>
rev="..." Get the form field value from the specified topic revision, range "1" to top revision of topic. "0" is equivalent to the top revision The rev URL parameter value if present, otherwise the top revision
Added:
>
>
format="..." Format string. Supported variables:
$value - form field value
$value(20, -<br />) - value hyphenated every 20 characters using separator -<br />
$value(30, ...) - value shortened to 30 characters
$length - length of value (can be used to test if value is set)
$title - raw field name (includes space and other special characters)
$name - field name (sanitized title)
$attributes - form field attributes
$formtopic - name of form definition topic
"$value"
 
default="..." Text shown when no value is defined for the field ""
alttext="..." Text shown when field is not found in the form ""
newline="$br" Convert newlines in textarea to other delimiters. Variable $br expands to <br /> tag, and $n to a newline. Other text is encoded based on encode parameter. no conversion
encode="html" Encode special characters into HTML entities. If a FORMFIELD is passed into an HTML form field it should be encoded as "html". Additional encodings available: encode="quote", encode="moderate", encode="safe", encode="entity" and encode="url". See ENCODE for details. "" (no encoding)
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field not found"}%
  • Example: <input type="text" name="Address" value="%FORMFIELD{ "Address" encode="html" }%" />
Alterado:
<
<
>
>
    • Note: It is easier to use EDITFORMFIELD for custom input fields
Added:
>
>
 

Versão 514 Jun 2011 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
    format="..." Format string. Variable $value expands to the field value, $title to the raw field name, $name to the field name, $attributes to the attributes, $type to the form field type, $size to the size, and $definingTopic to the form definition topic. "$value"
    default="..." Text shown when no value is defined for the field ""
    alttext="..." Text shown when field is not found in the form ""
Added:
>
>
newline="$br" Convert newlines in textarea to other delimiters. Variable $br expands to <br /> tag, and $n to a newline. Other text is encoded based on encode parameter. no conversion
encode="html" Encode special characters into HTML entities. If a FORMFIELD is passed into an HTML form field it should be encoded as "html". Additional encodings available: encode="quote", encode="moderate", encode="safe", encode="entity" and encode="url". See ENCODE for details. "" (no encoding)
 
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field not found"}%
Alterado:
<
<
>
>
  • Example: <input type="text" name="Address" value="%FORMFIELD{ "Address" encode="html" }%" />
Added:
>
>
 

Versão 409 Jan 2011 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
Alterado:
<
<
format="..." Format string. $value expands to the field value, and $title expands to the fieldname (also expands $name, $attributes, $type, $size and $definingTopic) "$value"
>
>
format="..." Format string. Variable $value expands to the field value, $title to the raw field name, $name to the field name, $attributes to the attributes, $type to the form field type, $size to the size, and $definingTopic to the form definition topic. "$value"
 
default="..." Text shown when no value is defined for the field ""
alttext="..." Text shown when field is not found in the form ""
Alterado:
<
<
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field found"}%
  • Related: SEARCH
>
>
Deleted:
<
<
 

Versão 327 Mar 2005 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
Alterado:
<
<
format="..." Format string. $value expands to the field value, and $title expands to the fieldname "$value"
>
>
format="..." Format string. $value expands to the field value, and $title expands to the fieldname (also expands $name, $attributes, $type, $size and $definingTopic) "$value"
 
default="..." Text shown when no value is defined for the field ""
alttext="..." Text shown when field is not found in the form ""
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field found"}%
  • Related: SEARCH

Versão 227 Mar 2005 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"
Deleted:
<
<
 

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
Alterado:
<
<
format="..." Format string. $value expands to the field value, and $title expands to the field title "$value"
>
>
format="..." Format string. $value expands to the field value, and $title expands to the fieldname "$value"
 
default="..." Text shown when no value is defined for the field ""
alttext="..." Text shown when field is not found in the form ""
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field found"}%
Alterado:
<
<
>
>
 

Versão 127 Mar 2005 - TWikiContributor

 
META TOPICPARENT name="TWikiVariables"

FORMFIELD{"fieldname"} -- renders a field in the form attached to some topic

  • Syntax: %FORMFIELD{"fieldname"}%
  • Supported parameters:
    Parameter: Description: Default:
    "fieldname" The name of a TWiki form field required
    topic="..." Topic where form data is located. May be of the form Web.TopicName Current topic
    format="..." Format string. $value expands to the field value, and $title expands to the field title "$value"
    default="..." Text shown when no value is defined for the field ""
    alttext="..." Text shown when field is not found in the form ""
  • Example: %FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field found"}%
  • Related: SEARCH
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 1999-2026 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Idéias, solicitações, problemas com relação ao TWiki? Nos dê um retorno
Note: Please contribute updates to this topic on TWiki.org at TWiki:TWiki.VarFORMFIELD.
#