Active
Project:
Ubercart Ajax Attribute Calculations
Version:
6.x-2.1
Component:
Miscellaneous
Priority:
Minor
Category:
Support request
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
12 Feb 2011 at 20:05 UTC
Updated:
15 Jul 2018 at 01:46 UTC
Jump to comment: Most recent
Comments
Comment #1
overbythere commentedThe way the price is updated is (as far as I am aware) is a AJAX call, meaning behind the scenes your web browser is loading a webpage, and getting the value back from this webpage, so it depends on the speed of your internet connection/server.
Ways to get around this:
I hope this makes sense, and helps answer your question about it being slower.
Regards,
-Dan, Attitude Design.
Comment #2
Rocinant commentedI would think that a 'wait cursor' might be a good alternative to the 'loading price' suggestion of Dan.
It must be possible with a script on the page that looks something like this (as written on http://postpostmodern.com/instructional/global-ajax-cursor-change):
Combined with this code in the css-file
html.busy, html.busy * {
cursor: wait !important;
}
But this code does not yet work, as my knowledge of jQuery and Javascript is not that good...
Is anyone able to correct the syntax?
Regards
Rocinant
Comment #3
vin247 commentedI got this working using the following:
and the css:
html.wait, html.wait * {cursor:progress;}Comment #4
kris_mcl commentedThat works perfectly, thanks for posting that vin247!
Comment #5
splash112 commentedVery nice addition indeed!
Comment #6
splash112 commentedSomehow it stopped working for me (or I should say, continued to spin without ever stopping for some browsers).