Displaying 11 results from an estimated 11 matches for "statustext".
2008 Feb 13
8
comparing ajax.updater div in js
This is really bugging me no matter what I''m trying.
In javascript, I''m using the ajax.updater, and it (obviously) writes
back out to a div. I want to then compare what was echoed out into
this div (which came from the php file I listed in ajax.updater) with
a string.
test should equal "SomeString" because that is what is being echoed
out to
2007 Jun 16
3
Help with effect queue.
...v object.
So, I have this - and please assume that variables used in the code
snippet below are defined in non-quoted parts of this code:
<code>
new Ajax.Request(url, {
method: ''get'',
onFailure: function(transport)
{
$("update_message").update(transport.statusText);
},
onSuccess: function(transport)
{
new Effect.BlindUp(content, {queue: ''front'', scope: id} );
new Element.update(content,transport.responseText, {queue: ''end'',
scope: id} );
new Effect.BlindDown(content, {queue: ''end'', scope: i...
2007 Jun 07
0
Prototype 1.5.1 Content-Type Header
...39;'SOAPAction'',''""''],
postBody: xmlDocument,
// Handle successful response
onSuccess: function(t) {
alert(t.responseText);
},
// Handle 404
on404: function(t) {
alert(''Error 404: location "'' + t.statusText + ''" was not
found.'');
},
// Handle other errors
onFailure: function(t) {
alert(''Error '' + t.status + '' -- '' + t.statusText);
}
}
new Ajax.Request(url, opt);
}
when i do this the request header looks like this.....
2005 Oct 03
0
Prototype Ajax.Request (onLoading and onSuccess) question
...onLoading: myxa.onLoading,
onSuccess: myxa.updateCalendar,
onFailure: function(t) {
alert(''onFailure: '' + t.statusText); myxa.removeCalendar(t);},
on404: function(t) { alert(''on404:
'' + t.statusText); myxa.removeCalendar(t);}
}
);
},
onLoading: function()...
2006 Sep 04
3
Mongrel Upload Progress 0.2 -- With Instructions and Examples
Hi Folks,
I''m sure tons of people are gonna ruin a whole drawer of their best
panties over this one.
Rick Olson worked on the mongrel_upload_progress gem, documentation and
examples and has almost everything you need to do progress tracked file
uploads using just Mongrel to handle the upload. This means that Rails
(or any other framework) isn''t blocked while the upload
2006 Sep 29
1
Error on drag n drop list after refreshing list using AJAX
...9;'+h+''" style="color:''
+listItemColor+'';">''+results[h+1]+''</li>'';
} //end-for
ajaxTarget.innerHTML = listItemString;
}else{
alert("An error has occurred: "+ajaxReq.statusText);
} //end-if-else-status
} //end-if-readyState
}//end-processRequest()
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to th...
2005 Oct 05
5
InPlaceEditor crash on Safari
Quick question..
I often crash my Safari when using ''Enter'' on InPlaceEditor''s for
submitting.
Works fine on firefox(win & Mac) - no javascript errors.
Anyone else seen this behavior?
(Maybe it is just my alterings of InPlaceEditor :-)
Best Regards
Michael Krog
2005 Aug 31
4
Element.show - element.style.display=''''
...#statusFooter
{
border: 0px solid blue;
font-size: 12pt;
}
</style>
</head>
<body >
<div id="statusDiv">
<div id="statusHeader"><h2>Test</h2></div>
<hr />
<div id="statusBody">
<p id="statusText">Starting text</p>
</div>
<hr />
<div id="statusFooter">
<p><a href="dummyStatusScreen.htm">Click here for
details</a></p>
</div>
</div>
<a href="#" onclick="showDiv()">SHOW</...
2005 Sep 25
14
script.aculo.us 1.5 release candidate 1
So, the first script.aculo.us 1.5 release candidate is out!
Important changes and fixes from 1.5_pre4 (for a detailed list, see
the CHANGELOG file):
* Droppables w/greedy and hoverclass are now reverted when dragged
item is no longer over them, fixes #2184
* Let Effect.Highlight correctly parse IE colors, add
String.prototype.parseColor() for this, fixes #2037
* Make scriptaculous.js work
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...39;)",20000);
+ xmlhttp.onreadystatechange = function () {
+ if (xmlhttp.readyState==4) {
+ //window.clearTimeout(timeoutID);
+ if (xmlhttp.status==200) {
+ cbk(xmlhttp.responseText);
+ } else {
+ alert("Server returned status code "+xmlhttp.status+":\n"+xmlhttp.statusText);
+ cbk(null);
+ }
+ }
+ }
+ if (method=="GET") {
+ xmlhttp.open(method, url+"?"+query, true);
+ xmlhttp.send(null);
+ } else if (method=="POST") {
+ xmlhttp.open(method, url, true);
+ xmlhttp.setRequestHeader('Content-Type',...
2015 Aug 07
0
Wine release 1.7.49
...d3d9/tests: Mark testbot depth bias results broken.
Vincent Povirk (1):
ole32: Ignore high part of size in storage version 3 files.
YongHao Hu (1):
msvcp120/tests: Fix error test case of tr2_sys_Copy_file in FAT filesystem.
Zhenbo Li (6):
mshtml: Add IHTMLXMLHttpRequest::statusText property implementation.
mshtml: Add IHTMLXMLHttpRequest::getResponseHeader() method implementation.
mshtml: Add IHTMLXMLHttpRequest::getAllResponseHeaders() method implementation.
mshtml: Add IHTMLOpinionElement::index property's getter implementation.
mshtml: Add IHTML...