I am in the process of upgrading a client to R6. We need to use the new "Product Group Restriction" feature to restrict products to members of certain subscriptions.
On the EditProduct page, only non-subscription groups are available.
Is there a reason why the LoadNonSubscriptionGroups method from the GroupDataSource is being used, as opposed to the other available methods?
If I change it, can you tell me if there any known complications with using Subscription Groups?
AbleCommerce.Admin.Products.EditProduct.aspx
Code: Select all
<asp:ListBox ID="ProductGroups" runat="server" SelectionMode="Multiple" Height="100px" Width="250px" DataSourceID="ProductGroupsDS" DataTextField="Name" DataValueField="GroupId"></asp:ListBox>....
<asp:ObjectDataSource ID="ProductGroupsDS" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="LoadNonSubscriptionGroups" TypeName="CommerceBuilder.Users.GroupDataSource"></asp:ObjectDataSource>