Skip to main content
Version: 3.5

TagTextBox

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents a data field that displays a list of selectable and removable tags. The control recognizes tags as the user types and adds in front of the editable field.

public class TagTextBox : TextBoxBase

Constructors

Instance memberTagTextBox()

Initializes an instance of a TagTextBox control.

Properties

Instance memberAllowDuplicateTags

Boolean: Returns or sets whether duplicate tags are allowed. Since 3.0.10 (Default: False)

When a duplicate tag is rejected, the control fires the TagRejected event.

Instance memberEditable

Boolean: Returns or sets whether the user can add tags by typing into the editable field. (Default: True)

Instance memberKeepWatermark

Boolean: Returns or sets whether the watermark should disappear when there is at least one tag. (Default: False)

Instance memberMaxTagCount

Int32: Returns or sets the maximum number of tags allowed in the control. When this limit is reached, the control will fire the TagRejected event and will not add the tag. The default is 0 = unlimited. (Default: 0)

Instance memberMaxTagWidth

Int32: Returns or sets the maximum width in pixels of the tag widgets displayed on the client. When the content exceeds this limit, it will show an ellipses. (Default: 100)

Instance memberMinFieldLength

Int32: Returns or sets the minimum number of characters that should fit in the editable portion of the control before it wraps to a new line. (Default: 10)

Instance memberSelectedText

String: Returns the text of the selected tag.

Instance memberSelectionLength

Int32: Returns the length of the selected tag.

Instance memberSelectionStart

Int32: Returns the position of the selected tag.

Instance memberSeparatorChar

Char: Returns or sets the character used to separate the tags. (Default: ,)

Instance memberShowToolTips

Boolean: Returns or sets whether to show a tooltip with the full content of the tag text when the mouse hovers over the tag element. (Default: False)

Instance memberTagCount

Int32: Returns the number of tags in the control.

Methods

Instance memberSelectTag(tag)

Selects the specified tag, if it exists. If the tag is selected successfully, it will fire the TagSelected event.

ParameterTypeDescription
tagStringText of the tag to select.

Events

Instance memberSeparatorCharChanged

EventHandler Fired when the value of SeparatorChar changes.

Instance memberTagAdded

TagTextBoxEventHandler Fired when the user adds new tag is added to the control.

Instance memberTagClick

TagTextBoxMousEventHandler Fired when the user clicks (or taps) on a tag outside of the close icon.

Instance memberTagDoubleClick

TagTextBoxMousEventHandler Fired when the user double clicks (or double taps) on a tag outside of the close icon.

Instance memberTagRejected

TagTextBoxEventHandler Fired when the user tries to add a tag that already exists or the maximum number of allowed tags set in MaxTagCount is reached.

Instance memberTagRemoved

TagTextBoxEventHandler Fired when the user removes a tag from the control.

Instance memberTagRender

TagTextBoxRenderEventHandler Fired when the control needs to render the tags in the Text property.

Use this event to change the visual aspect of each tag on the client.


private void tagTextBox1_TagRender(object sender, TagTextBoxRenderEventArgs e)
{
switch (e.Text)
{
case "Arizona":
e.BackColor = Color.Beige;
break;

case "Florida":
e.BackColor = Color.LightGreen;
break;

case "Alaska":
e.Html = "<b>" + e.Text + "</b>";
break;

case "California":
e.Html = "<u>" + e.Text + "</u>";
break;

case "Georgia":
e.Html = "<img src='Images/fullstar.png' style='display:inline-block;float:left;padding-right:5px' width='16'/>" + e.Text;
break;
}
}

Instance memberTagSelected

TagTextBoxEventHandler Fires when the user selects a tag.

Implements

NameDescription
IBindableComponentBindable components implement this interface.
IDropTargetControls that support drag & drop operations implement this interface.
ILabelProvides access to the LabelWrapper associated with the controls that implement this interface.
IReadOnlyProvides access to the ReadOnly property for coontrols that support the read-only mode.
IModifiedProvides access to the Modified property and ModifiedChanged event for controls that implement this interface.
IValidationProvides access to the validation events and properties property for controls that support validation.
IWisejComponentAll wisej components implement this interface.
IWisejControlAll wisej controls derived from the Control class must implement this interface.
IWisejSerializableAllows an object to serialize itself.