Liking cljdoc? Tell your friends :D

seesaw.forms


ComponentSpeccljprotocol

appendclj

(append this builder)

Add the given component to the form builder

Add the given component to the form builder
source

forms-panelclj

(forms-panel column-spec & opts)

Construct a panel with a FormLayout. The column spec is expected to be a FormLayout column spec in string form.

The items are a list of strings, components or any of the combinators. For example:

:items ["Login" (text) (next-line)
        "Password" (span (text) 3)]

Takes the following special properties. They correspond to the DefaultFormBuilder option of the same name.

:default-dialog-border?
:default-row-spec
:leading-column-offset
:line-gap-size
:paragraph-gap-size

See http://www.jgoodies.com/freeware/forms/index.html

Construct a panel with a FormLayout. The column spec is
expected to be a FormLayout column spec in string form.

The items are a list of strings, components or any of the
combinators. For example:

    :items ["Login" (text) (next-line)
            "Password" (span (text) 3)]

Takes the following special properties. They correspond
to the DefaultFormBuilder option of the same name.

    :default-dialog-border?
    :default-row-spec
    :leading-column-offset
    :line-gap-size
    :paragraph-gap-size

See http://www.jgoodies.com/freeware/forms/index.html
sourceraw docstring

groupclj

(group & items)

Group the rows of the contained items into a row group.

Group the rows of the contained items into a row group.
sourceraw docstring

next-columnclj

(next-column)
(next-column n)

Continue with the nth next column in the builder.

Continue with the nth next column in the builder.
sourceraw docstring

next-lineclj

(next-line)
(next-line n)

Continue with the nth next line in the builder.

Continue with the nth next line in the builder.
sourceraw docstring

separatorclj

(separator)
(separator label)

Adds a separator with an optional label to the form.

Adds a separator with an optional label to the form.
sourceraw docstring

spanclj

(span component column-span)

Add the given component spanning several columns.

Add the given component spanning several columns.
sourceraw docstring

titleclj

(title title)

Adds the given title to the form.

Adds the given title to the form.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close