TIME OBJECT

Description

Since the version 2011.00a is available the inserting time’format HH:MM o HH:MM:SS.

Specific properties

In addition to common properties contains the following properties:

  • ShowSeconds: It determines whether the input format must be HH: MM: SS (“True”) or HH: MM (“False“).
    If the type of the linked database field is string (CUSTOMXX), the data will be stored as a string in the format HHMM or HHMMSS, if it’s numeric (NUMBERXX) will store the number of hours (and fractions of hours) corresponding (eg. 7:15 will be stored as 7.25). If you retrieves the field value in an event using the “Value” property, you should note that the return value is different between event client/server and web:
    -in the case of the event the client / server returns a string containing the entered value (hours, minutes and possibly seconds) without separators.
    -in the case of the event web returns a numerical value to the transformation of the value entered in minutes.

Specific events

  • ChangeEvent
    event activated when change the value of the field. Can be used to
    – assign other fields based on the value inserted into the field
    – check the validity of the inserted value giving a message to the user.

For more information about Events click here.

Properties that can be used by code

C/S Properties
  • Enabled: If is False, the field is no editable (the description of the name becomes gray). 
  • Value: If is True, returns the text contained in the object.
  • Visible: if is True, the field is visible on the form, otherwise assign it with False.
Web properties
  • Enabled: If is False, the field is no editable (the description of the name becomes gray). 
  • Value: If is True, returns the text contained in the object.
  • Visible: if is True, the field is visible on the form, otherwise assign it with False.

Methods that can be used by code

None