Ejemplo n.º 1
0
        protected void drpSearchConditionApplication_SelectedIndexChanged(object sender, EventArgs e)
        {
            txtSearchConditionApplicationName.Text = drpSearchConditionApplication.SelectedValue;

            BindLists();
            BucketOfNotificationEventType.ReloadBucketList(true);
            BucketOfNotificationPublisher.ReloadBucketList(true);
        }
Ejemplo n.º 2
0
        protected void drpSearchConditionApplication_SelectedIndexChanged(object sender, EventArgs e)
        {
            txtSearchConditionApplicationName.Text = drpSearchConditionApplication.SelectedValue;

            BindLists();
            BucketOfNotificationEventType.ReloadBucketList(true);
            BucketOfNotificationPublisher.ReloadBucketList(true);
            BucketOfNotificationEventType.ConfigureBucket("NotificationEventType", 1, GetNotificationEventTypeList, GetAssociatedNotificationEventTypes, SaveByNotificationPublisher);
            BucketOfNotificationPublisher.ConfigureBucket("NotificationPublisher", 1, GetNotificationPublisherList, GetAssociatedNotificationPublishers, SaveByNotificationEventType);
        }
Ejemplo n.º 3
0
 protected void drpSelection_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (drpSelection.SelectedValue == "ByNotificationPublisher")
     {
         dynNotificationPublisher.Visible = true;
         dynNotificationEventType.Visible = false;
         BucketOfNotificationEventType.ReloadBucketList();
     }
     else if (drpSelection.SelectedValue == "ByNotificationEventType")
     {
         dynNotificationPublisher.Visible = false;
         dynNotificationEventType.Visible = true;
         BucketOfNotificationPublisher.ReloadBucketList();
     }
 }
Ejemplo n.º 4
0
 protected void drpNotificationPublisher_SelectedIndexChanged(object sender, EventArgs e)
 {
     BucketOfNotificationEventType.ReloadBucketList();
 }
Ejemplo n.º 5
0
 protected override void OnInit(EventArgs e)
 {
     BucketOfNotificationEventType.ConfigureBucket("NotificationEventType", 1, GetNotificationEventTypeList, GetAssociatedNotificationEventTypes, SaveByNotificationPublisher);
     BucketOfNotificationPublisher.ConfigureBucket("NotificationPublisher", 1, GetNotificationPublisherList, GetAssociatedNotificationPublishers, SaveByNotificationEventType);
 }