You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The originating lookup field that raised the event.
53
+
*/
54
+
fieldName: string;
55
+
}
56
+
57
+
interfaceOnLookupTagClickEventArgs{
58
+
/**
59
+
* Gets the selected tag value.
60
+
*/
61
+
getTagValue(): LookupTagValue;
62
+
63
+
/**
64
+
* Returns a value indicating whether the lookup tag click event has been canceled because the preventDefault method was used in this event hander or a previous event handler.
65
+
*/
66
+
isDefaultPrevented(): boolean;
67
+
68
+
/**
69
+
* Cancels the lookup tag click event, but all remaining handlers for the event will still be executed.
0 commit comments