Displaying 20 results from an estimated 1100 matches similar to: "Ajax.Updater not working in IE, tried everything"
2008 Apr 29
1
Making new Ajax.Updater within a previous Ajax.Updater call
I have a button which calls a form via Ajax.Updater:
<a href="javascript:void()" onclick="createMessage()">Create Message</
a>
<script>
function createMessage() {
new Ajax.Updater( ''content'', ''message.php'', { method: ''post'' } );
}
</script>
This is the message.php file:
<html>
<head>
2008 Jun 04
1
new to prototype : Ajax.Updater
hey guys..
im a prototype rookie here..
the concept of "a framework for javascript" seemed mouth watering..
but my rails got stuck when i started using it.
here is the guinea pig im using to experiment on prototype.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html
2008 Jun 07
3
PeriodicalExecuter stops when form is submitted in Safari 3
Hi I''m having a problem using PeriodicalExecuter with a form.
I have a monitoring pane that updates status of form processing,
and it stops working when I submit a form. It works with Safari 2,
IE, Firefox, but not with Safari 3.
I''ve made a test script: http://www.charmm-gui.org/test.html
It updates a textarea, but it stops updating when the form is
submitted in Safari 3. Any
2008 May 13
8
static private and multi-inherit
/*author:csf178-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org*/
function Class(Initalizer,SuperClasses)
{
if(!SuperClasses)SuperClasses=[];
var ret=function(){
for(var i=0;i<SuperClasses.length;i++)
{
SuperClasses[i].call(this);
}
var $private={};
var $public=this;
var $static=ret;
with($static){
with($private){
with($public){
2002 Oct 21
4
Any work-around for very large number of files yet?
Yes, I've read the FAQ, just hoping for a boon...
I'm in the process of relocating a large amount of data from one nfs server
to another (Network Appliance filers). The process I've been using is to
nfs mount both source and destination to a server (solaris8) and simply use
rsync -a /source/ /dest . It works great except for the few that have > 10
million files. On these I get
2008 May 22
9
building a many-to-many structure in javascript
hi,
for some purpose, I need a "in-javascript database", maybe built with
some Prototype $H function calls for creating "tables"
but what about junction tables, I mean those which express many-to-
many relations between two entity tables ?
I though using concatenation of strings with a separator, for example
"key1 key2"
"1234-56"
or "ABC \n 789"
2008 Jul 11
1
Scriptaculous: how to keep element space?
Hello everybody,
I hope I am at the right place here with my question, otherweise
please accept my apologies.
I searched a lot for my question and did not find an answer, so I
would be very happy if you could help me out maybe.
I am using Effect.Fade for on element. Everythings works fine, but
when the element is faded out, its space it no longer used and
therefore other elements move and
2008 Apr 18
1
element has no properties error.
Hey all,
I''ve recently started messing around with Prototype again, so I
thought I''d start small and write 5 lines of code that would check if
all fields in a form are filled out. So I thought
document.observe(''dom:loaded'', function() {
$(''submNewUser'').disable();
new Form.Observer($(''newUser''), 0.3, function(e, val) {
2008 Jul 11
2
Error in prototype.js ......var value = element.style[style];
Hi,
I have a script that throws an error in prototype.js on line 1889. Its
just started showing...it''s not breaking my app at all just showing
the error. I can''t track back to where it started happening though.
It''s this line.
var value = element.style[style];
Has anyone encountered this before....do yiou have any hints on how to
track this bug down?
2008 Jul 05
3
getting and writing atrr with prototype
Hi i''m learning prototype and i need to know something...
Someone knows how to write and get the value of some atribute... i
mean like...jquery that uses $(''#sub-div'').atrr(''alt'',''visible);
in prototype is there something like that?...
I hope you can help me and thanks :D
--~--~---------~--~----~------------~-------~--~----~
You received
2008 Aug 10
1
Prototype, JSON and headers
Hi everyone.
I love JSON and using Prototype has help me reduce the code to handle
AJAX responses.
But one thing keeps me confused and sometimes even frustrated.
I don''t really understand what is going on with the headers, so if
someone could take some time to explain what is going on, I (and
probably a lot more people) would be very thankful.
The thing is this. On my local server (Mac OS
2008 Mar 20
2
onUpdate problem with div
I hav the following code:
<div id="puzzle">
<div id="divImage" style="float:left; cursor: move;>test 1</
div>
<div id="divImage" style="float:left; cursor: move;>test 2</
div>
<div id="divImage" style="float:left; cursor: move;>test 3</
div>
<div
2008 Jul 11
1
prototype.js breaks treemenus from pear HTML_TreeMenu in safari
hi all
i see a very strange behavior in safari when using prototype.js and
the pear HTML_TreeMenu
to reproduce get prototype.js (http://www.prototypejs.org/assets/
2008/1/25/prototype-1.6.0.2.js) and treemenu.js (http://cvs.php.net/
viewvc.cgi/pear/HTML_TreeMenu/TreeMenu.js?revision=1.22).
and test the following html with safari on mac or windows (http://
www.apple.com/safari/download/)
2008 Dec 30
0
[LLVMdev] Controlling the stack layout
Hi Nicolas,
>> This might help. See how "stack protectors" is implemented here:
>>
>> lib/CodeGen/StackProtector.cpp
>>
>> It places a special value at a specific place on the stack. You can
>> use the same trick to put your own information on a set stack
>> position. There's more to the code than just that .cpp file. It's
>>
2008 Dec 29
2
[LLVMdev] Controlling the stack layout
Hi Bill,
Bill Wendling wrote:
>
> This might help. See how "stack protectors" is implemented here:
>
> lib/CodeGen/StackProtector.cpp
>
> It places a special value at a specific place on the stack. You can
> use the same trick to put your own information on a set stack
> position. There's more to the code than just that .cpp file. It's done
>
2008 Mar 10
5
Passing extra parameters to functions called from Observers
Hi again,
When you have an ''obeserver'' setup as follows:
$(''myForm'').observe(''submit'', validateForm);
If a user submits the form the ''validateForm'' function is called and
is automagically passed the ''event'' to work with. This is fantastic!
But is there a way to pass another argument to the function?
2008 Jul 07
4
script.aculo.us slider - this and event handler - depending sliders
Hi,
I successfully created depending sliders with prototype and slider.js.
See the result here: http://www.soa-world.de/dev/slider/slider.html
(here''s the code: http://pastebin.com/ma1e82eb)
There is one problem with my code. What I do is I have a sliders class
"function sliders()"
inside I create the 5 sliders in a for loop and store them inside an
array which is a member of
2015 Dec 16
2
weather.agi
http://www.wunderground.com/weather/api/
-----Original Message-----
From: asterisk-users-bounces at lists.digium.com
[mailto:asterisk-users-bounces at lists.digium.com] On Behalf Of
dk at donkelly.biz
Sent: Wednesday, December 16, 2015 9:20 AM
To: 'Asterisk Users Mailing List - Non-Commercial Discussion'
Subject: Re: [asterisk-users] weather.agi
-----Original Message-----
From:
2012 Aug 10
1
Question about --partial-dir and aborted transfers of large files
Apologies to the list, the title of this thread is completely wrong. It
should be something like "Question about --partial-dir and aborted
transfers of large files". Let's see if this mailing list program will
allow me to change it...
-- T.J.
On 10 August 2012 15:28, T.J. Crowder <tj at crowdersoftware.com> wrote:
> Hi all,
>
> rsync is a fantastic tool. :-)
2012 Apr 15
1
R CMD check with non-standard .libPaths
Does anyone have advice on how to instruct R CMD check to use a
non-standard set of libraries? Here's the situation:
I'm trying to do some automated checking on package dependencies of a
package I maintain. In order to do that I've written code that takes
the list of the dependent packages and for each package (1) downloads
the most recent/available .tar.gz file; (2) installs the