ShoppingCart.aspx keypressed enter

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
I'm using 1.6.

Maybe this is not a bug, but when I press Enter in any of the TextBoxes that are in ShoppingCart.aspx (quantity, coupon, gift card code), I get redirected to search.aspx?searchterms=Search+store.

Help please.
13 years ago
Yes, it's the bug. Thanks for reporting
13 years ago
nopProblem!

I found a quick repellent for it - just add onkeydown="return (event.keyCode!=13);" tag in your textbox.

For example:
<asp:TextBox ID="txtDiscountCouponCode" runat="server" Width="125px"  onkeydown="return (event.keyCode!=13);" />
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.