Difference between revisions of "Data Attributes"

From Lianjapedia
Jump to: navigation, search
Line 40: Line 40:
  
 
* See [[Choices]].
 
* See [[Choices]].
 +
 +
==Column alignments==
 +
A comma separated list of column alignments, e.g.left,right,center.
 +
* Supported by [[Listview Gadget Attributes|Listview Gadget]].
 +
 +
==Column widths==
 +
A comma separated list of column widths.
 +
* Supported by [[Listview Gadget Attributes|Listview Gadget]].
  
 
==CommandButton Caption==
 
==CommandButton Caption==
Line 163: Line 171:
 
An optional caption for the GroupBox containing the CheckListView items.
 
An optional caption for the GroupBox containing the CheckListView items.
 
* Supported by [[Checklistview Gadget Attributes|Checklistview Gadget]].
 
* Supported by [[Checklistview Gadget Attributes|Checklistview Gadget]].
 +
 +
==Header labels==
 +
A comma separated list of header labels.
 +
* Supported by [[Listview Gadget Attributes|Listview Gadget]].
  
 
==Help topic==
 
==Help topic==

Revision as of 09:59, 23 May 2016

Under Construction

See Also

Autosuggestions, Choices, Colors, Data Mapping, Fonts, Formitem Appearance, Help Attributes, Input Masks, Instant Search

Anchor

Allow multiple selections

Allow multiple selections (True | False)

Automatic pagination

Grid is rendered using pagination if the number of records exceeds below amount (True | False).

Automatic pagination size

Grid is rendered using pagination if Automatic pagination is true and the number of records exceeds this amount.

Autosuggestions

Autosuggestions


Autosuggestion headers

Autosuggestion column to search

Background color

Choices

Choices


Column alignments

A comma separated list of column alignments, e.g.left,right,center.

Column widths

A comma separated list of column widths.

CommandButton Caption

CommandButton Icon image

Context Menu

Custom attributes

Custom UI component

Specify a custom UI component from the UI Page Library to embed into this gadget.

Data size

Data source

The field or memory variable the control is bound to.

For a field, this should be in the format tablename.fieldname:

customers.customerid

For memory variables, use the 'm.' prefix:

m.cMemvar1

Default

Default



The Default attribute is available in Form Section Fields, Canvas Section Advanced Controls and Grid Columns.

It specifies the default value for the field when a new record is added or the initial value of a memory variable data source.



Here the orders.orderdate is populated with the system date when a new record is added.


Default


Double-click the header of a column in a Grid Section to access the Column Attributes.


Default


Here again the orders.orderdate is populated with the system date when a new record is added.

A Default has also been set on the orders.orderid field using the SEQNO() function to generate a unique sequential number.

The orders.customerid field automatically inherits the current customers.customerid value due to the Relationship Builder relation set between the customers Form Section and the orders Grid Section (key: customerid).


Data Dictionary: Default

The Default attribute corresponds to the Default Column Constraint stored in the table's Data Dictionary.

Modify a Column: Default


The Default Column Constraint can be set in the Create a Column and Modify a Column dialogs in the Data Workspace and Page Builder.


It can also be specified in the CREATE TABLE and ALTER TABLE commands.

// Mandatory
ALTER TABLE "orders" MODIFY CONSTRAINT ORDERDATE SET DEFAULT date()

Default search field

Dialog button

Dialog button delegate

Editable

Error message

Filter

The filter expression that restricts the records that will be included in the grid.

Font

Font size

Font size for the Tree or CheckListView items.

Foreground color

Get data mapping

Grid row height

Height of the grid rows.

GroupBox caption

An optional caption for the GroupBox containing the CheckListView items.

Header labels

A comma separated list of header labels.

Help topic

Hide actionbar

Hide actionbar buttons (True | False).

Hide OK/Cancel Buttons

Hide the OK/Cancel buttons (True | False).

Hide search field indicator

Hyperlink

Image

The static image to be displayed in this gadget.

Inherit dictionary rules

Form Section and Canvas Section Advanced controls can 'inherit' the Data Dictionary rules. This populates the control's relevant attributes with the settings from the Data Dictionary.

Section: Inherit dictionary rules



By default, controls have the Inherit dictionary rules attribute set to True, but the containing Form and Canvas Sections have the attribute set to False.

To enable dictionary inheritance for all the controls in a Section, set the Section's attribute to True.


Field: Inherit dictionary rules



The attributes of the controls will be populated with the dictionary settings (save and reload the App).

Inherit dictionary rules can then be disabled for individual controls as required.

Remember, enabling Inherit dictionary rules for the control has no effect unless Inherit dictionary rules for the control's containing Section is enabled.


Input mask

Input mask type

Mandatory input

Mandatory input



The Mandatory input attribute is available in Form Section Fields and Canvas Section Advanced Controls.

It specifies that the field cannot be empty.




Attempting to save a record without entering non-empty data in a field with the Mandatory input attribute set returns an error message and the record is not saved.

Note: 0 is considered an empty numeric value.


Data Dictionary: Not Null

The Mandatory input attribute corresponds to the Not Null Column Constraint stored in the table's Data Dictionary.

Modify a Column: Mandatory / Not Null


The Mandatory / Not Null Column Constraint can be set in the Create a Column and Modify a Column dialogs in the Data Workspace and Page Builder.


It can also be specified in the CREATE TABLE and ALTER TABLE commands.

// Mandatory
ALTER TABLE "customers" MODIFY CONSTRAINT CUSTOMERID SET NOT NULL
// Not Mandatory
ALTER TABLE "customers" MODIFY CONSTRAINT CUSTOMERID SET NULL

Pagination

Grid is always rendered using pagination (for large data sets)(True | False)

Password input

Placeholder text

Readonly

Recalculate

Relate on change

Render as a CommandButton

Return tabs

Row height

Row height for the Tree or CheckListView items.

Search field

Search panel field

Set data mapping

Stretch image

Stretch image (True | False).

Tab order

Text alignment

Tooltip

URL

The URL for this gadget or section.

User selectable search field

Validation

Validation error message

Notes on Client Support

Attribute Notes
Context Menu Currently supported on the Desktop client only.
Help topic Currently supported on the Desktop client only.
Tooltip Currently supported on the Desktop client only.