Tags Order A-Z Category Context

<sn:editor-text>

Renders a textbox input.

Attributes

  • integer < optional > The width of the text field in characters Must be an int .
  • integer < optional > The maximum number of characters the text field supports Must be an int .
  • string < optional > The value of the text inside of the text input. Can be any string .
  • string < optional > A short label that is displayed to the left of the input Can be any string .
  • string < optional > The name of the input element. When the form is submitted, this is the name of the query string variable representing this element value. Can be any string .
  • boolean < optional > A flag to indicate if the widget should be marked as required. Must be a boolean .
  • string < optional > style of the

    element that is rendered for this widget. Can be any string .

  • string < optional > if set to true prevents the editor form rendering a label Can be any string .

Valid Contexts

  • : The area where your app is displayed alone
  • : The Bebo profile page
  • : On a notification page (after the user has clicked on a link in the email)
  • : On the invitations page

Code

<sn:editor action="">
    <sn:editor-text size="25" value="Initial value" name="myValue" label="Look at my text"/>
 </sn:editor>
Play with this code in the sandbox