Fb:editor-custom

From Facebook Developer Wiki

Revision as of 01:31, 30 August 2008 by Pete Bratach (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

Contents

Description

Allows you to put any content into an fb:editor block, as long as it is valid FBML.

Attributes

RequiredNameTypeDescription
optional label string The label text for left hand side.
id string The identifier tag for fb:editor.

Examples

This creates a drop down selector.

<fb:editor-custom label="Status"> <select name="state"> <option value="0" selected>have read</option> <option value="1">am reading</option> <option value="2">want to read</option> </select> </fb:editor-custom>

You can also put regular text into the form.

<fb:editor-custom> Here is text on the right side. </fb:editor-custom>
edcus.jpg

Notes

  • Password fields are currently supported.
reference