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

            BindLists();
            BucketOfNotificationEventType.ReloadBucketList(true);
            BucketOfNotificationPublisher.ReloadBucketList(true);
        }
Exemple #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);
        }
Exemple #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();
     }
 }
Exemple #4
0
 protected void drpNotificationEventType_SelectedIndexChanged(object sender, EventArgs e)
 {
     BucketOfNotificationPublisher.ReloadBucketList();
     //BucketOfNotificationPublisher.ConfigureBucket("NotificationPublisher", 1, 2, GetNotificationPublisherList, GetAssociatedNotificationPublishers, SaveByNotificationEventType);
 }
Exemple #5
0
 protected void drpNotificationEventType_SelectedIndexChanged(object sender, EventArgs e)
 {
     BucketOfNotificationPublisher.ReloadBucketList();
 }