[Proto-Scripty] IE7 problems....with simple prototype ajax

2008-12-04 Thread ameshkin
Does anyone know why I'm getting so many errors in IE7, but it works perfect in firefox? http://www.promoventures.com/clients/indexNEW.php --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us

[Proto-Scripty] Re: IE eval() question...

2008-12-04 Thread kangax
On Dec 4, 1:59 pm, yoshi <[EMAIL PROTECTED]> wrote: > i think u guys are assuming firefox, in IE eval without the function > wrapped in () does not cause syntax err, and even if i added the '()', That's a bug. It should throw an error (as most of other browsers do). > like > > var stuff7=eval('(

[Proto-Scripty] Re: Ajax.request and timeouts

2008-12-04 Thread Matt Foster
Hey Matthew, I ran into that issue as well, where you're not really expecting the onSuccess event as its timed out, inherently an error has occurred, as the server has taken longer than allowed. Take a look at my approach to a resolution to this problem in my solution to implementing tim

[Proto-Scripty] Re: IE eval() question...

2008-12-04 Thread Matt Foster
Try ending the statement with a semicolon, it is probably hitting the syntax error there. var stuff = eval('(function(){ ... });'); On Dec 4, 1:59 pm, yoshi <[EMAIL PROTECTED]> wrote: > i think u guys are assuming firefox, in IE eval without the function > wrapped in () does not cause syntax

[Proto-Scripty] Re: IE eval() question...

2008-12-04 Thread yoshi
i think u guys are assuming firefox, in IE eval without the function wrapped in () does not cause syntax err, and even if i added the '()', like var stuff7=eval('(function() {alert("stuff..");})') stuff7 is still undefinedaccording to IE8 beta2's js console that is. On Dec

[Proto-Scripty] Re: better way to change to nextfield

2008-12-04 Thread Miguel Beltran R.
> > > >var key = evt.which || evt.keyCode; > > Afaik, you don't need to check `which` when observing `keydown` (as > it's only populated in `keypress`) Thanks hehe, I copied the example but really I dont understand what evt.which do --~--~-~--~~~---~-

[Proto-Scripty] Re: Why does this not work in FF?

2008-12-04 Thread blechler
Thanks for the suggestion, and kudos to you for working on such a worthy project like Tabby's Place. B On Dec 4, 11:03 am, "Jonathan Rosenberg" <[EMAIL PROTECTED]> wrote: > Check for syntactic errors in the file.  Maybe you misspelled > 'text/javascript' or similar problem.  I've spent a lot of

[Proto-Scripty] Re: Why does this not work in FF?

2008-12-04 Thread blechler
I had apparently somehow uploaded prototype.js as a binary file. Sheesh. On Dec 4, 10:30 am, blechler <[EMAIL PROTECTED]> wrote: > Here is the HTML: > -- >         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> > > > DELME >   >   > > >

[Proto-Scripty] Re: Why does this not work in FF?

2008-12-04 Thread Jonathan Rosenberg
Check for syntactic errors in the file. Maybe you misspelled 'text/javascript' or similar problem. I've spent a lot of time chasing down bugs that turned out to be typos. -- Jonathan Rosenberg Founder & Executive Director, Tabby's Place http://www.tabbysplace.org/ > On Dec 4, 3:30 pm, blechle

[Proto-Scripty] Re: Why does this not work in FF?

2008-12-04 Thread T.J. Crowder
Hi, It works for me in Firefox (3.0.3, Windows). Any errors? Do you have Firebug loaded? -- T.J. Crowder tj / crowder software / com On Dec 4, 3:30 pm, blechler <[EMAIL PROTECTED]> wrote: > Here is the HTML: > -- >         "http://www.w3.org/TR/xhtml1/D

[Proto-Scripty] Why does this not work in FF?

2008-12-04 Thread blechler
Here is the HTML: -- http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> DELME -- Here is lib.js: -- function init() { alert('foo'); } document.observe('d

[Proto-Scripty] Re: Ajax.updater - data get merged in content when running many updaters

2008-12-04 Thread Stucture_Ulf
I'm not using the dom:loaded event and I understand that this is causing my problem here. I'll have to re-implement click handlers for actions.But this will take some time in this case. Is there any way to trigger a function by using dom:loading in a if condidional statement...like this.. if dom:

[Proto-Scripty] Re: slide effect problem

2008-12-04 Thread Walter Lee Davis
Then there is something else going on in your page that you aren't accounting for. The basic premise works, and very well. http://jsbin.com/ivipa Walter On Dec 4, 2008, at 6:34 AM, shafir wrote: > > yes i saw it > but as i said...doesnt work :( --~--~-~--~~~---~

[Proto-Scripty] Re: slide effect problem

2008-12-04 Thread shafir
yes i saw it but as i said...doesnt work :( On Dec 3, 3:20 pm, Walter Lee Davis <[EMAIL PROTECTED]> wrote: > Did you see my follow-up message where I corrected my typo? I had a   > curly brace in there instead of a normal parenthesis. Look through the   > rest of this thread. > > Walter > > On D

[Proto-Scripty] Re: Any table utils ?

2008-12-04 Thread K.C.Leung
I hope the prototype framework would add some table related utils. It is useful. On 12月4日, 下午2時12分, kangax <[EMAIL PROTECTED]> wrote: > On Dec 3, 3:54 pm, "K.C.Leung" <[EMAIL PROTECTED]> wrote: > > > > > > > Are there and table mehods for Table to make easier ? > > > > > > > Top Le

[Proto-Scripty] Re: autocompleter.local

2008-12-04 Thread charliem
Many Thanks Walter Charlie --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to prototype-scriptaculous@googlegroups.com To unsubscribe from this g

[Proto-Scripty] Re: Ajax.updater - data get merged in content when running many updaters

2008-12-04 Thread T.J. Crowder
Hi, > you're right, data doesn't get merged by using the updater. my problem > is that the data get merged in a div while a user clicks and activates > an update during page load, if so data get merged. That's interesting. I wonder why that happens. So it's only during page load. > how can I

[Proto-Scripty] Re: fade Effect and PNG in IE

2008-12-04 Thread Sébastien Gruhier
I faced the same issue few days ago. The only way i fix it is to use GIF file with correct background !! --- http://xilinus.comWeb Application Development, Consulting, Training http://mapeed.com Markers fusion plugin fo

[Proto-Scripty] Ajax.request and timeouts

2008-12-04 Thread Matthew Reed
Hello everyone. I apologize if this matter has already been dealt with. I need to make ajax calls and manage transmission timeouts, so I cutandpasted codejanitor's code : http://codejanitor.com/wp/2006/03/23/ajax-timeouts-with-prototype/. It works but I noticed that calling request.transport.ab

[Proto-Scripty] Re: IE eval() question...

2008-12-04 Thread yuval dagan
try it like this: add "(" and ")" var stuff7=eval('(function() {alert("stuff..");})') thats because the interpreter rules of running the script On Thu, Dec 4, 2008 at 3:17 AM, yoshi <[EMAIL PROTECTED]> wrote: > > heres my js: > > var stuff7=eval('function() {alert("stuff..");}') > > when i alert