Wisej.Web.DomainUpDown
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents a spinner control that displays string values.
Initializes a new instance of the DomainUpDown class.
Initializes a new instance of the DomainUpDown class with specific initial settings.
onSelectedItemChanged
Initializes a new instance of the DomainUpDown class with specific initial settings.
label
onSelectedItemChanged
Initializes a new instance of the DomainUpDown class with specific initial settings.
location
The Point specifying the upper-left corner of the DomainUpDown control relative to the upper-left corner of its container.
size
The Size of the DomainUpDown control.
onSelectedItemChanged
Initializes a new instance of the DomainUpDown class with specific initial settings.
label
location
The Point specifying the upper-left corner of the DomainUpDown control relative to the upper-left corner of its container.
size
The Size of the DomainUpDown control.
onSelectedItemChanged
Size: Returns the default size for a text box control.
DomainUpDownItemCollection: A collection of objects assigned to the spinner control.
Int32: Returns or sets the index value of the selected item. (Default: -1
)
Throws:
ArgumentOutOfRangeException The assigned value is less than the default, -1; or the assigned value is greater than the Items count.
Object: Returns or sets the selected item based on the index value of the selected item in the collection.
Boolean: Returns or sets whether the item collection is sorted. (Default: False
)
String: Returns or sets the text associated with this control. (Default: ""
)
When AllowHtml is set to true, the text can contain HTML content. If the text contains new lines (CRLF) but doesn't contain HTML elements (at least one "<") all CRLF are automatically substituted with "<BR/>".
Fires the SelectedItemChanged event.
e
Fires the SortedChanged event.
e
Processes the event from the client.
e
Event arguments.
Renders the client component.
config
Dynamic configuration object.
Updates the client component using the state information.
state
Dynamic state object.
Displays the value of the currently selected item.
EventHandler Fired when the SelectedItem property has been changed.
EventHandler Fired when the Sorted property has changed.
Provides access to the UserData
and Tag
properties associated to the component implementing this interface.
Bindable components implement this interface.
Controls that support drag & drop operations implement this interface.
Provides access to the validation events and properties property for controls that support validation.
All wisej components implement this interface.
Allows an object to serialize itself.
The delegate to invoke when the event is raised.
Initial value.
The delegate to invoke when the event is raised.
The delegate to invoke when the event is raised.
Initial value.
The delegate to invoke when the event is raised.
An that contains the event data.
A that contains the event data.
Provides access to the associated with the controls that implement this interface.
Provides access to the property for coontrols that support the read-only mode.
All wisej controls derived from the class must implement this interface.
Wisej.Web.DomainUpDown DomainUpDownItemCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Encapsulates a collection of objects for use by the DomainUpDown class.
Int32: Returns the number of items in the collection.
Boolean: Returns or sets the dirty state for the list. When true, the list of items must be sent back to the client.
Boolean: Returns a value indicating whether this collection can be modified.
Object: Retrieves the item at the specified index within the collection.
Throws:
ArgumentOutOfRangeException The index was less than zero; or the index was greater of equal to the count of items in the collection.
Adds an object to the end of the collection.
item
Returns: Int32. The index at which the item has been added.
Adds a collection of objects to the end of the collection.
items
Items to add to the end of the collection.
Removes all items from the DomainUpDown control.
Determines if the specified item is located within the collection.
item
An object representing the item to locate in the collection.
Returns: Boolean. true if the item is located within the collection; otherwise, false.
Returns an enumerator that can be used to iterate through the item collection.
Returns: IEnumerator. A IEnumerator that represents the item collection.
Retrieves the index within the collection of the specified item.
item
An object representing the item to locate in the collection.
Returns: Int32. The zero-based index where the item is located within the collection; otherwise, -1.
Throws:
ArgumentNullException The item parameter was null.
Inserts an element into the collection at the specified index.
index
The zero-based index at which item should be inserted.
item
Throws:
ArgumentOutOfRangeException index is less than zero, or index is greater than number of items in the collection.
Removes the first occurrence of a specific object from the collection.
item
Removes the element at the specified index of the collection.
index
The zero-based index of the element to remove.
Throws:
ArgumentOutOfRangeException index is less than zero; or index is equal to or greater than number of items in the collection.
Renders the list to the json definition for the client.
Returns: Object.
The to be added to the end of the collection. The value can be null.
The to insert. The value can be null.
The to remove from the collection. The value can be null.