Skip to content

Form Layout

Get the layout of a form. Length and width of the field, The fields you set on the table and their order, Put fields in the Group field and their layout, label, space, and border settings.

  • Permissions to view the App is needed.
  • API Tokens cannot be used with this API.

FormLayout

Methods

getRevision()

Get the revision

Parameter

(none)

Return

String

Sample code

get Revision Source code
String revision = layout.getRevision();

getLayout()

Get the layout

Parameter

(none)

Return

List<ItemLayout>

Sample code

get Layout Source code
List itemLayoutList = layout.getLayout();

FieldLayout

Methods

getType()

Get the type

Parameter

(none)

Return

String

Sample code

get Type Source code
String type = fieldLayout.getType();

getCode()

Get the code

Parameter

(none)

Return

String

Sample code

get Code Source code
String code = fieldLayout.getCode();

getElementId()

Get the elementId

Parameter

(none)

Return

String

Sample code

get Element Id Source code
String elementId = fieldLayout.getElementId();

getLabel()

Get the label

Parameter

(none)

Return

String

Sample code

get Label Source code
String label = fieldLayout.getLabel();

getSize()

Get the size

Parameter

(none)

Return

FieldSize

Sample code

get Size Source code
FieldSize size = fieldLayout.getSize();

FieldSize

Methods

getWidth()

Get the width

Parameter

(none)

Return

String

Sample code

get Width Source code
String width = fieldSize.getWidth();

getHeight()

Get the height

Parameter

(none)

Return

String

Sample code

get Height Source code
String height = fieldSize.getHeight();

getInnerHeight()

Get the innerHeight

Parameter

(none)

Return

String

Sample code

get Inner Height Source code
String innerHeight = fieldSize.getInnerHeight();

GroupLayout

Warning

Methods

getCode()

Get the code

Parameter

(none)

Return

String

Sample code

get Code Source code
String code = groupLayout.getCode();

getLayout()

Get the layout

Parameter

(none)

Return

List<RowLayout>

Sample code

get Code Source code
List layout = groupLayout.getLayout();

RowLayout

Warning

Methods

getFields()

Get the fields

Parameter

(none)

Return

List<FieldLayout>

Sample code

get Fields Source code
String fields = rowLayout.getFields();

SubTableLayout

Warning

Methods

getCode()

Get the code

Parameter

(none)

Return

String

Sample code

get Code Source code
String code = subTableLayout.getCode();

ItemLayout

Warning

  • This class is an abstract class.

Methods

getType()

Get the type

Parameter

(none)

Return

LayoutType

Reference