Editors
Last updated
Last updated
Wisej.NET provides a number of "editor" controls to allow the user to enter content into the application. Typically an editor control corresponds to an <input> element in the browser.
There are fundamentally four kinds of editors: TextBoxes, UpDown (aka Spinners), Pickers, and ComboBox controls. In this section, we explain the TextBox, UpDown, and Pickers, while the ComboBox is under the Lists & Grids section.
All TextBox controls are derived from the TextBoxBase class and generally provide a consistent set of properties, events, and features.
In the browser, the controls are rendered as a <div> container with an <input> element inside.
All UpDown controls are derived from the UpDownBase class. In the browser, the controls are rendered as a <div> container with an <input> element and two +/- buttons.
Currently, we support a numeric spinner, a text spinner, and a time spinner.
There is only one Picker control, the DateTimePicker and there is no common base class other than the Control class, which is the base class for all controls in Wisej.