public PopupEditorNotificationData(
     ListItemDataBoundEventArgs listItemDataBoundEventArgs)
     : this()
 {
     this.notificationContext        = PopupEditorNotificationData.Context.ListItemDataBound;
     this.listItemDataBoundEventArgs = listItemDataBoundEventArgs;
 }
Exemple #2
0
        protected virtual void OnItemDataBound(object sender, ListItemDataBoundEventArgs args)
        {
            ListItemDataBoundEventHandler handler = (ListItemDataBoundEventHandler)this.Events[ListItemDataBoundEventKey];

            if (handler != null)
            {
                handler(this, args);
            }
        }
Exemple #3
0
        protected virtual void OnItemDataBound(object sender, ListItemDataBoundEventArgs args)
        {
            ListItemDataBoundEventHandler boundEventHandler = (ListItemDataBoundEventHandler)this.Events[RadListControl.ListItemDataBoundEventKey];

            if (boundEventHandler == null)
            {
                return;
            }
            boundEventHandler((object)this, args);
        }
 public PopupEditorNotificationData()
 {
     this.notificationContext             = PopupEditorNotificationData.Context.None;
     this.valueChangedEventArgs           = (Telerik.WinControls.UI.Data.ValueChangedEventArgs)null;
     this.positionChangingCancelEventArgs = (PositionChangingCancelEventArgs)null;
     this.positionChangedEventArgs        = (Telerik.WinControls.UI.Data.PositionChangedEventArgs)null;
     this.listItemDataBindingEventArgs    = (ListItemDataBindingEventArgs)null;
     this.listItemDataBoundEventArgs      = (ListItemDataBoundEventArgs)null;
     this.creatingVisualListItemEventArgs = (CreatingVisualListItemEventArgs)null;
     this.keyPressEventArgs    = (KeyPressEventArgs)null;
     this.mouseEventArgs       = (MouseEventArgs)null;
     this.sortStyleChanged     = (SortStyleChangedEventArgs)null;
     this.visualItemFormatting = (VisualItemFormattingEventArgs)null;
     this.keyEventArgs         = (KeyEventArgs)null;
 }
 private void listElement_ItemDataBound(object sender, ListItemDataBoundEventArgs args)
 {
     this.NotifyOwner(new PopupEditorNotificationData(args));
 }
Exemple #6
0
 private void element_ItemDataBound(object sender, ListItemDataBoundEventArgs args)
 {
     this.OnItemDataBound(sender, args);
 }