Editors

Wisej.NET provides editor controls for user input. These typically correspond to an <input> element in the browser.

The editors come in four categories: TextBox, UpDown (Spinners), Pickers, and ComboBox controls. This section covers TextBox, UpDown, and Pickers, while the ComboBox is documented under Lists & Grids.

TextBox Controls

All TextBox controls derive from the TextBoxBase class, sharing consistent properties, events, and features.

In the browser, these render as a <div> container with an <input> element inside.

TextBox controls hierarchy

UpDown (Spinner) Controls

All UpDown controls derive from the UpDownBase class. In the browser, they render as a <div> container with an <input> element and two +/- buttons.

Wisej.NET includes numeric, text, and time spinners.

UpDown controls types

Picker Controls

The DateTimePicker is the sole Picker control, inheriting directly from the Control base class.

DateTimePicker control

Last updated

Was this helpful?