Firefox / Shipping Estimate bug

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
kastnerd
Commodore (COMO)
Commodore (COMO)
Posts: 474
Joined: Wed Oct 22, 2008 9:17 am

Firefox / Shipping Estimate bug

Post by kastnerd » Mon Jan 12, 2009 12:44 pm

I use Firefox and so is 34% of my users
A fresh install of Able 7.1. when using the Shipping Estimate i like to hit enter after i enter the zip code. In IE it works fine but in Firefox it just brings me to the home page. I have to manually click "Go" or hit tab then enter.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Firefox / Shipping Estimate bug

Post by mazhar » Tue Jan 13, 2009 6:47 am

Confirmed. You can try the following quick workaround. Edit the ConLib/BasketShippingEstimate.ascx file and locate the following line of code

Code: Select all

<asp:LinkButton ID="SubmitButton" SkinID="Button" Text="Go" runat="server" OnClick="SubmitButton_Click" ValidationGroup="Estimate"></asp:LinkButton>
and change it as below

Code: Select all

<asp:Button ID="SubmitButton"  Text="Go" runat="server" OnClick="SubmitButton_Click" ValidationGroup="Estimate"></asp:Button>
Now edit the ConLib/BasketShippingEstimate.ascx.cs file and locate the below line of code

Code: Select all

PageHelper.DisableValidationScrolling(this.Page);
and make it look like

Code: Select all

PageHelper.SetDefaultButton(SubmitButton, SubmitButton.ClientID);
PageHelper.DisableValidationScrolling(this.Page);
Now check in both FF and IE.

kastnerd
Commodore (COMO)
Commodore (COMO)
Posts: 474
Joined: Wed Oct 22, 2008 9:17 am

Re: Firefox / Shipping Estimate bug

Post by kastnerd » Tue Jan 13, 2009 8:15 am

I think its listed as bug 6674 as well

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Firefox / Shipping Estimate bug

Post by mazhar » Tue Jan 13, 2009 8:25 am

This is different, It's related to LinkButton.

tosypian
Ensign (ENS)
Ensign (ENS)
Posts: 9
Joined: Mon Aug 11, 2008 9:41 am
Location: Tampa, FL
Contact:

Re: Firefox / Shipping Estimate bug

Post by tosypian » Tue Jan 13, 2009 7:51 pm

Thanks for posting this fix!

kastnerd
Commodore (COMO)
Commodore (COMO)
Posts: 474
Joined: Wed Oct 22, 2008 9:17 am

Re: Firefox / Shipping Estimate bug

Post by kastnerd » Thu Jan 15, 2009 8:49 am

My company is small we have 6 people with computers, 5 of them use Firefox as the web browser.

The main site needs to work with Google Chrome and opera and firefox. But i have found that the admin side of the website only works in IE.

I have found a Bug in the admin side using IE

when making a Category under another Category, type in the name and hit enter. It clicks on (Parent Category) not Add like it should.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Firefox / Shipping Estimate bug

Post by mazhar » Thu Jan 15, 2009 10:56 am

Seems good to me on my local install. What is your version of AbleCommerce?

kastnerd
Commodore (COMO)
Commodore (COMO)
Posts: 474
Joined: Wed Oct 22, 2008 9:17 am

Re: Firefox / Shipping Estimate bug

Post by kastnerd » Thu Jan 15, 2009 1:04 pm

BUILD: 10875
Attached is a photo
It did it on a sub sub Category

Post Reply