Displaying 20 results from an estimated 20000 matches similar to: "Prototype: automatic javascript response evaluation"
2005 Oct 18
0
Parsing rSS files using javascript/prototype
Hi, I would like to parse the rss files using just dom/javascript (don''t want any server side processing).
I know that xmlhttp can''t contact 3rd party but i''ll route it through one of the backend scripts.
I was wondering if there is some easy to use feature in these libraries that can help me parse rss feeds?
2008 Jan 04
6
Ajax.Request: onFailure vs. onException
Hello All,
I''m trying to capture the exception message that my server application
is providing in response to my Ajax.Request. However, I''m confused as
to when onFailure is fired vs. onException. The onException handler has
access to the javascript exception object and I''d understood that it was
only called when the dispatch fails. Not sure what exactly that means
2008 Apr 03
1
Changing the prototype.js from 1.5.0 to 1.6.0.2 causes error in javascript code.
Hi,
I am a new member of this group.
We are using autocomplete box from "script.aculo.us". It uses the
prototype.js file.
We are creating the auto completer dynamically in a table. Our code
was working on FireFox(FF) but was giving error on
InternetExplorer(IE). So we upgraded the prototype.js file today from
version 1.5.0 to 1.6.0.2.
Only this particular change was done.
When we
2007 Oct 15
3
JavaScript error after including Prototype library
Hello,
I''ve started seeing this error after including Prototype:
Form.Element.Serializers[method] is not a function
http://qaslweb1.crossmediaservices.com/shoplocal/scripts/prototype.js
Line 2754
You should be able to see this error, using either Firefox or IE, when
browsing to:
http://qaslweb1.crossmediaservices.com/
Any ideas? Since this is a version of our original site rebranded
2006 Apr 12
11
innerHTML and scripts not running
Hello,
I''m having an issue with getting embedded javascript code to actually
run when loaded via an Ajax.Request() call and the callback function
inserts the generated HTML and js code to my current page. It seems
that the javascript code is not properly parsing.
For example, I''m using the following function showinfo() to return
some html code.
function showInfo(go_url){
2006 Apr 15
1
Begin with Autocompleter
Hi list:
I''m a young developer that need a little help with scriptaculous "Autocompleter". I work with PRADO framework (http://www.xisc.com) and PHP as a script language. Now this is a little function in JavaScript for make a AJAX call and show the results without reload the entire page. See below:
1 function makeRequest(url,element) {
2 var http_request = false;
3 if
2008 Jan 09
4
Using Prototype - Getting Javascript Error - "Object doesn't support this property or method"
I have the following javascript being called on my site and I am
getting a Javascript error - "Object doesn''t support this property or
method". The error is invoked on the line that has - "listItems = $
("vidList").childElements("li");".
The purpose of the Javascript is two fold: ''swapVideo'' to change the
Youtube video and
2007 Oct 25
5
A new JavaScript Framework based on Prototype and Scriptaculous : Archetype
After several months of development, we are proud to announce you the
first public release of Archetype JavaScript Framework (License MIT,
version 0.1)!
Archetype is a JavaScript framework. It''s not a simple toolkit, but a
real framework which affects the way you code in JavaScript. Made on
top of excellent libraries as Prototype and Scriptaculous, it aims to
ease development of real
2007 Mar 01
6
prototype ajax.updater response bigger than 10k on safari
Hi All,
Safari crashes everytime my ajax response is bigger than 10k, i traced
it down and found out that it breaks when evalScript is being called,
maining when extractScript is trying to match the regex.....
is this a known bug on safari?
if yes is there anyway to get around it?
thanks in advance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you
2006 Apr 18
7
[Prototype] evalScripts not working for me
I think I am experiencing the variable scope problem with evalScripts.
I have this block of code being returned from an Ajax.Updater call,
as shown by FireBug or one of those other Firefox plugins. I have
tried to boil it down to the minimum code.
<script type="text/javascript">
test = function() { alert("test"); };
</script>
<table
2005 Sep 15
1
Javascript object literals -- prototype clash?
I''ve been playing with some ideas in getting the server-side Rails code and
client-side AJAX stuff working nicely together while still providing
fallback for non-js viewers. I''m using Behaviour + prototype.
I was experimenting with using an object literal to define forms that would
be inserted into appropriate divs. Why not just write the forms on the
server side and unhide
2007 Apr 13
2
Is JavaScript JSON Hijacking problems present/considered in Prototype's coming release?
I sort of let things loose on Prototype''s growth for awhile - yet, as
the article (found here: http://webreflection.blogspot.com/2007/04/are-130-byte-enought-to-solve.html)
came before me, the question arose: ''is the issue considered in
Prototype?''
I couldn''t find a bug regarding it: the one in German isn''t counted. )
So I roll it in here. Please
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
host static anyterm content locally,
url parameterize anyterm rows/cols/general param
update spec/makefile
Ideally I wanted and tried hard to put all this into a
seperate ovirt-server--anyterm subpackage, but we cannot
'reopen' the ovirt server virtual host defined in
ovirt-server.conf to add the neccessary rewrite rules. it would
be nice to figure out a way to do this
---
2007 Jan 27
5
Prototype not processing javascript
I''m trying to change over from Rails 1.1.6 to 1.2.1 and have discovered
that either something is wrong with Prototype of else something has
changed that I am not aware of and cannot find documentation on. (I
just joined this group, so if this has already been cussed and
discussed here or in another list then please point me in the right
direction.)
I am trying to use the
2005 Dec 21
1
RE: Prototype: correct useage of onComplete withAjax.PeriodicalUpdater
>From a quick look at the source code, it looks like onComplete is only
called when the whole thing is done - in the case of Updater, right
after the update, in the case of PeriodicalUpdater, right after it has
been stopped.
It looks like you need to pass your callback method as an ''insertion''
method in the options. This takes two parameters, the first will
probably be the
2005 Dec 21
1
RE: Prototype: correct useage of onCompletewithAjax.PeriodicalUpdater
The only call that PeriodicalUpdater will make periodically to you is
the insertion call.
I think of onComplete as being ''I''ve done everything I was going to do'',
which for Updater is right after it''s done a single update, but for
PeriodicalUpdater, it''s after it''s finished all of its updates, so
you''ll only get it once for any call
2007 Mar 13
3
Prototype question invalid error in IE6
Hi, I''m new to using Prototype and script.aculo.us. I''m trying to use
prototype to adjust an elements top margin based on the height of the
screen. I''m also using script.aculo.us to make the element move
negatively off the left of the window to create a scrolling effect. It
works fine in Firefox, but I keep getting an Invalid argument error in
IE6.
Here my margin code
2005 Dec 04
5
Javascript Logging
Hello Everyone,
Just wanted to find out if scriptaculous has a patch for a error logging class?
Currently, I have found 2 javascript logging scripts (outside of scriptaculous).
Lumberjack: http://gleepglop.com/javascripts/logger/
log4js: http://jroller.com/page/stritti?entry=logging_in_javascript_log4js
Could you guys shed some light on what would be a good logger class to use with our
2008 Jun 05
0
Javascript & Scrolling
I am currently in the middle of creating a horizontal scrolling
product list with page buttons that use effects to scroll from one
page to another using scriptaculous.
I am having problem that when the window is resized, so only the
viewable area of the div changes, this causes the width to change and
then because of that the scroll effect will scroll to position 2000
but then when the scroll bar
2008 Mar 22
4
Ajax.Updater not fully work in IE7
My code snapshot: correct work in FF , Opera and Safari, but in IE7 -
isn''t return result
<form action="test.php" method="POST">
<div id="country" style="border: 1px solid #ccc; width: auto"></div>
<br/>
<a href="javascript:getTest()">test</a>
</form>
<script