|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.click.control.AbstractControl
net.sf.click.control.AbstractContainer
net.sf.click.control.Form
net.sf.click.extras.control.HtmlForm
Provides an HTML Form control to create composite based forms: <form method='post'>.
Form
uses an HTML Table to layout its fields and
controls. HtmlForm on the other hand does not provide a layout and instead
relies on the developer to compose a layout programmatically.
This allows developers to provide a more flexible and CSS friendly layout.
You can read more about programmatic layout here.
Also see this example of how HtmlForm is used to provide a custom layout.
Please note, for most cases Form
is the better option as
it provides automatic layout and error reporting.
Field Summary |
Fields inherited from class net.sf.click.control.Form |
actionURL, ALIGN_CENTER, ALIGN_LEFT, ALIGN_RIGHT, buttonAlign, buttonList, buttonStyle, columns, defaultFieldSize, disabled, enctype, error, errorsAlign, errorsPosition, errorsStyle, fieldList, fieldStyle, fieldWidths, FOCUS_JAVASCRIPT, FORM_NAME, HTML_IMPORTS, javaScriptValidation, labelAlign, labelsPosition, labelStyle, method, MULTIPART_FORM_DATA, POSITION_BOTTOM, POSITION_LEFT, POSITION_MIDDLE, POSITION_TOP, readonly, SUBMIT_CHECK, validate |
Fields inherited from class net.sf.click.control.AbstractContainer |
controlMap, controls |
Fields inherited from class net.sf.click.control.AbstractControl |
actionListener, attributes, listener, listenerMethod, messages, name, parent, styles |
Fields inherited from interface net.sf.click.Control |
CONTROL_MESSAGES |
Constructor Summary | |
HtmlForm()
Create an html form with no name. |
|
HtmlForm(String name)
Create an html form with the given name. |
Method Summary | |
Control |
add(Control control,
int width)
This method is not supported and throws an UnsupportedOperationException if invoked. |
Field |
add(Field field,
int width)
This method is not supported and throws an UnsupportedOperationException if invoked. |
protected int |
getFormSizeEst(List formFields)
|
boolean |
onProcess()
|
void |
render(HtmlStringBuffer buffer)
Render the HTML representation of the form and all its child controls to the specified buffer. |
protected void |
renderChildren(HtmlStringBuffer buffer)
|
protected void |
renderContent(HtmlStringBuffer buffer)
|
protected void |
renderTagBegin(String tagName,
HtmlStringBuffer buffer)
|
Methods inherited from class net.sf.click.control.AbstractContainer |
contains, getControl, getControlMap, getControls, hasControls, onInit, onRender, renderTagEnd, toString |
Methods inherited from class net.sf.click.control.AbstractControl |
addStyleClass, appendAttributes, getActionListener, getAttribute, getAttributes, getContext, getId, getMessage, getMessage, getMessage, getMessages, getName, getPage, getParent, getStyle, getStyles, hasAttribute, hasAttributes, hasStyles, onDeploy, registerActionEvent, removeStyleClass, setActionListener, setAttribute, setId, setParent, setStyle |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface net.sf.click.Control |
getContext, getId, getMessages, getName, getParent, onDeploy, setParent |
Constructor Detail |
public HtmlForm(String name)
name
- the name of the formpublic HtmlForm()
Method Detail |
public Field add(Field field, int width)
field
- the field to add to the formwidth
- the width of the field in table columns
UnsupportedOperationException
- if invokedpublic Control add(Control control, int width)
control
- the control to add to the formwidth
- the width of the control in table columns
UnsupportedOperationException
- if invokedpublic boolean onProcess()
Control.onProcess().
public void render(HtmlStringBuffer buffer)
buffer
- the specified buffer to render the control's output toAbstractControl.render(net.sf.click.util.HtmlStringBuffer)
protected void renderTagBegin(String tagName, HtmlStringBuffer buffer)
tagName
- the name of the tag to renderbuffer
- the buffer to append the output toAbstractControl.renderTagBegin(java.lang.String, net.sf.click.util.HtmlStringBuffer)
protected void renderContent(HtmlStringBuffer buffer)
buffer
- the buffer to append the output toAbstractContainer.renderContent(net.sf.click.util.HtmlStringBuffer)
protected void renderChildren(HtmlStringBuffer buffer)
buffer
- the buffer to append the output toAbstractContainer.renderChildren(net.sf.click.util.HtmlStringBuffer)
protected int getFormSizeEst(List formFields)
formFields
- the list of form fields
AbstractControl.getControlSizeEst()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |