Example #1
0
 /// <summary>
 /// Handles the DataRequested event of the EntriesFilter control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="args">The <see cref="ComponentArt.Web.UI.ComboBoxDataRequestedEventArgs"/> instance containing the event data.</param>
 void EntriesFilter_DataRequested(object sender, ComboBoxDataRequestedEventArgs args)
 {
     LoadEntries(args.StartIndex, args.NumItems, args.Filter);
 }
 /// <summary>
 /// Handles the DataRequested event of the AssociataionItemsFilter control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="args">The <see cref="ComponentArt.Web.UI.ComboBoxDataRequestedEventArgs"/> instance containing the event data.</param>
 void AssociataionItemsFilter_DataRequested(object sender, ComboBoxDataRequestedEventArgs args)
 {
     LoadAssociationItems(args.StartIndex, args.NumItems, args.Filter);
 }
		private void cboOwner_DataRequested(object sender, ComboBoxDataRequestedEventArgs e)
		{
			// An AJAX callback is requesting more users for the album owner drop down list.
			LoadUsersDropDown(e.StartIndex, e.NumItems, e.Filter);
		}
Example #4
0
 private void cboOwner_DataRequested(object sender, ComboBoxDataRequestedEventArgs e)
 {
     // An AJAX callback is requesting more users for the album owner drop down list.
     LoadUsersDropDown(e.StartIndex, e.NumItems, e.Filter);
 }
Example #5
0
 /// <summary>
 /// Handles the DataRequested event of the NodeFilter control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="args">The <see cref="ComponentArt.Web.UI.ComboBoxDataRequestedEventArgs"/> instance containing the event data.</param>
 void NodeFilter_DataRequested(object sender, ComboBoxDataRequestedEventArgs args)
 {
     LoadCatalogNodes(args.StartIndex, args.NumItems, args.Filter);
 }
Example #6
0
 /// <summary>
 /// Handles the DataRequested event of the MembershipFilter control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="args">The <see cref="ComponentArt.Web.UI.ComboBoxDataRequestedEventArgs"/> instance containing the event data.</param>
 void MembershipFilter_DataRequested(object sender, ComboBoxDataRequestedEventArgs args)
 {
     LoadMemberItems(args.StartIndex, args.NumItems, args.Filter);
 }
Example #7
0
 /// <summary>
 /// Handles the DataRequested event of the CampaignFilter control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="args">The <see cref="ComponentArt.Web.UI.ComboBoxDataRequestedEventArgs"/> instance containing the event data.</param>
 void CampaignFilter_DataRequested(object sender, ComboBoxDataRequestedEventArgs args)
 {
     LoadCampaignItems(args.StartIndex, args.NumItems, args.Filter);
 }
 /// <summary>
 /// Handles the DataRequested event of the OrganizationFilter control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="args">The <see cref="ComponentArt.Web.UI.ComboBoxDataRequestedEventArgs"/> instance containing the event data.</param>
 void OrganizationFilter_DataRequested(object sender, ComboBoxDataRequestedEventArgs args)
 {
     LoadOrganizationItems(args.StartIndex, args.NumItems, args.Filter);
 }