Skip to main content
A newer version of this page is available. .

TimeEdit Main Features

  • 2 minutes to read

The TimeEdit extension allows end-users to modify its value by using specific spin buttons.

ASPxTimeEdit_control

TimeEdit offers the following features.

  • Edit Formatting

    You can specify how an editor value is represented within the edit boxes. For display and edit purposes, the edited value can be displayed in the following formats.

    View

    Affected Properties

    ASPxTimeEdit_time

    EditFormat=”Time”

    ASPxTimeEdit_date

    EditFormat= “Date”

    ASPxTimeEdit_datetime

    EditFormat=”DateTime”

    ASPxTimeEdit_custom

    EditFormat=”Custom”

    EditFormatString:=”MMMM dd, yyyy hh:mm tt”

  • Display Formatting

    The editor display value can be formatted for display purposes when the editor is not focused. You can define the format pattern via the DisplayFormatString property.

  • Mouse and Key Support

    The TimeEdit allows for the editing of date and time values by typing directly within it (if the TimeEditSettings.Properties.AllowUserInput (ButtonEditPropertiesBase.AllowUserInput) property value is set to true), or by clicking spin buttons to increment or decrement different portions of date and time values, or by using the mouse wheel or keyboard. To enable the changing of a value via the mouse wheel, set the TimeEditSettings.Properties.AllowMouseWheel (ButtonEditPropertiesBase.AllowMouseWheel) property value to true.

  • Customizable Button Collection

    The TimeEdit extension provides a collection to maintain its custom edit buttons. Each button exposes a set of properties allowing the button’s appearance and behavior to be defined. You can use the Buttons property to populate the button collection.

  • Built-in Validation

    The TimeEdit extension allows you to perform data validation both on the client and server side. See the Built-in Validation topic to learn more.

  • Full-Featured Client-Side API

    TimeEdit provides you with a comprehensive client-side API. This API is implemented using JavaScript and is exposed via the ASPxClientTimeEdit object. The ASPxClientTimeEdit object serves as a client-side equivalent of the TimeEdit extension.