cancel
Showing results for 
Search instead for 
Did you mean: 

Quantity Box not working

Former Member
0 Kudos

When I check the part -> details -> "quantity box" for a product line master part, it does not work correctly when I add to cart. I just get qty of 1 instead of the qty I put in. It works fine with non-product line master parts. It this supposed to work?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Stephen

This should actually be hidden and this is the bug. The idea behind PLM's is they are a representation of an array of items that get added to the cart. I can see how this is confusing.

Take a look at the partdetail.aspx file and find the line that intanciates the prodlineblock control

<asp:Content ContentPlaceHolderID="prodlinegrid" ID="plgblock" runat="server">
<np:ProdLineBlock ID="prodLine" runat="server" Visible="False" ShowPartType="False" ShowPartNo="True" ShowInventory="False"
ShowPrice="True" ShowThumbnail="True" ShowAddToCart="True" ShowQuantity="False"></np:ProdLineBlock>
</asp:Content>

Set the ShowQuantity="True"

This will show a quantity text box for each child.

Answers (0)