ShoppingCart.aspx keypressed enter

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 năm cách đây
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 năm cách đây
Yes, it's the bug. Thanks for reporting
13 năm cách đây
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.