RemoveTagEvent
Arguments for the removeTag
event. The removeTag
event fires when a tag is about
to the removed. If you cancel the event, the removal is prevented.
dataItem
any
The data item or an array of data items that will be removed.
Constructors
RemoveTagEvent
(dataItem: any)
Constructs the event arguments for the remove
event.
Parameters
dataItem
any
The data item or an array of data items that will be removed.
Methods
isDefaultPrevented
If the event is prevented by any of its subscribers, returns true
.
Returns
boolean
true
if the default action was prevented. Otherwise, returns false
.
preventDefault
Prevents the default action for a specified event. In this way, the source component suppresses the built-in behavior that follows the event.