Hello I am Elisabet mrs Palne Bartos
I please you comming my groups E-idealis we working very good idea
P2W Passport to Wealt here are very good job very good money and very kindly
people. Welcome my groups Elisabeth please reply to me.
On 9/29/07, rubyonrails-spinoffs group
<noreply-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
wrote:>
>
> Ruby on Rails: Spinoffs
> http://groups.google.com/group/rubyonrails-spinoffs?hl=en
>
> rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>
> Today''s topics:
>
> * transportXML returns null? - 2 messages, 2 authors
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/b47059b4e73db8ec?hl=en
> * resizing multiple divs - dragging - 2 messages, 1 author
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/376deae7604fe081?hl=en
> * Image Slideshow (with clickable URL) - 2 messages, 2 authors
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/b59a261f84bbad44?hl=en
> * drag and drop reset - 2 messages, 2 authors
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/8315bdbbc5a2bdf7?hl=en
> * form request (ajax) method in 1.5.1 - 1 messages, 1 author
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/86fdb6a200fbb2e0?hl=en
> * evalJSON problem - 2 messages, 2 authors
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/7298c97b6dd1555a?hl=en
> * Why PeriodicalUpdater doesn''t work on Internet Explorer? - 2
messages, 2
> authors
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/10ae5621a34d5558?hl=en
> * Event.observe doesn''t work - 3 messages, 3 authors
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/15c60ceb70a12b78?hl=en
> * Ajax.Updater doesn''t work with IE6 properly - 1 messages, 1
author
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/778d8273dd134fa8?hl=en
> * How to call a javascript in parent page from a Prototype Window? - 2
> messages, 2 authors
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/d06d7337735b1bc8?hl=en
>
>
>
=============================================================================>
TOPIC: transportXML returns null?
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/b47059b4e73db8ec?hl=en
>
>
=============================================================================>
> == 1 of 2 => Date: Thurs, Sep 27 2007 10:48 pm
> From: AlexK
>
>
> This is what I added to the XHTML file that I get:
>
> <meta http-equiv="Content-Type" content="text/xml;
charset=UTF-8" />
>
> and this:
>
> new Ajax.Request(url,
> {
> method:"get",
> contentType:"text/xml",
> onSuccess: function(transport) {
>
> And I still get null: var response >
transport.responseXML;
>
> Thanks!
> On Sep 28, 12:25 am, AlexK
<alexkoif...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> > Hi, this:
> > contentType: "application/xml"
> >
> > did not change anything. ANy other ideas? Thanks.
> >
> > On Sep 27, 7:16 pm, Tobie Langel
<tobie.lan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> >
> > > You have to set a correct content-type (application/xml).
> >
> > > Regards,
> >
> > > Tobie
> >
> > > On Sep 28, 12:39 am, AlexK
<alexkoif...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> >
> > > > Hi,
> >
> > > > I want to load an XHTML file into DOM. I issue Ajax.Request
and on
> > > > success do:
> > > > var response=transport.responseXML
> >
> > > > Response is null. On the other hand:
> > > > var response=transport.responseText; // has the data.
> >
> > > > Why is response=transport.responseXML returns null?
> >
> > > > Here is the code:
> >
> > > > function display() {
> > > > url = "http://" + location.hostname + port
+ "/fusion/
> > > > restlet/";
> > > > url = url + "engines" + sServer;
> > > > new Ajax.Request(url,
> > > > {
> > > > method:"get",
> > > > contentType:"application/xhtml+xml",
> > > > onSuccess: function(transport) {
> >
> > > > var response = transport.responseXML; //
null ?
> > > > //var response = transport.responseText; //
OK
> >
> > > > alert("after response=" +
response);
> > > > if (response != null) {
> > > > alert("b=" +
> > > >
response.getElementById(''lastUpdate'').innerHTML); // this
never
> works
> > > > }
> > > > else
> > > > alert("onSuccess, responseXML is
null");
> > > > },
> > > > onFailure: function(){ alert("Cannot get
data from
> server:
> > > > " + location.host) }
> > > > });
> > > > }- Hide quoted text -
> >
> > > - Show quoted text -
>
>
>
>
>
> == 2 of 2 => Date: Fri, Sep 28 2007 11:59 am
> From: Matt Foster
>
>
> I use the following code in PHP to make sure my output is interpreted
> as XML
>
> header("Content-Type: text/xml");
>
> and this code for ColdFusion.
>
> <cfheader charset="utf-8" name="Content-type"
value="text/xml">
>
>
> Cheers,
> Matt
>
> On Sep 28, 1:48 am, AlexK
<alexkoif...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> > This is what I added to the XHTML file that I get:
> >
> > <meta http-equiv="Content-Type" content="text/xml;
charset=UTF-8" />
> >
> > and this:
> >
> > new Ajax.Request(url,
> > {
> > method:"get",
> > contentType:"text/xml",
> > onSuccess: function(transport) {
> >
> > And I still get null: var response > >
transport.responseXML;
> >
> > Thanks!
> > On Sep 28, 12:25 am, AlexK
<alexkoif...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> >
> > > Hi, this:
> > > contentType: "application/xml"
> >
> > > did not change anything. ANy other ideas? Thanks.
> >
> > > On Sep 27, 7:16 pm, Tobie Langel
<tobie.lan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> >
> > > > You have to set a correct content-type (application/xml).
> >
> > > > Regards,
> >
> > > > Tobie
> >
> > > > On Sep 28, 12:39 am, AlexK
<alexkoif...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> >
> > > > > Hi,
> >
> > > > > I want to load an XHTML file into DOM. I issue
Ajax.Request and
> on
> > > > > success do:
> > > > > var response=transport.responseXML
> >
> > > > > Response is null. On the other hand:
> > > > > var response=transport.responseText; // has the
data.
> >
> > > > > Why is response=transport.responseXML returns null?
> >
> > > > > Here is the code:
> >
> > > > > function display() {
> > > > > url = "http://" + location.hostname +
port + "/fusion/
> > > > > restlet/";
> > > > > url = url + "engines" + sServer;
> > > > > new Ajax.Request(url,
> > > > > {
> > > > > method:"get",
> > > > >
contentType:"application/xhtml+xml",
> > > > > onSuccess: function(transport) {
> >
> > > > > var response = transport.responseXML;
// null ?
> > > > > //var response =
transport.responseText; // OK
> >
> > > > > alert("after response=" +
response);
> > > > > if (response != null) {
> > > > > alert("b=" +
> > > > >
response.getElementById(''lastUpdate'').innerHTML); // this
never
> works
> > > > > }
> > > > > else
> > > > > alert("onSuccess, responseXML
is null");
> > > > > },
> > > > > onFailure: function(){ alert("Cannot
get data from
> server:
> > > > > " + location.host) }
> > > > > });
> > > > > }- Hide quoted text -
> >
> > > > - Show quoted text -
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: resizing multiple divs - dragging
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/376deae7604fe081?hl=en
>
>
=============================================================================>
> == 1 of 2 => Date: Fri, Sep 28 2007 4:38 am
> From: Bebeth Steudel
>
>
> I''m trying to resize multiple divs at once and having some trouble
> keeping everything together.
>
> I''ve got 3 divs: 2 "box" divs and a "handle"
between them. The handle
> is an instance of a Draggable. When creating a draggable I use the
> onStart event to record the offsetLeft of the handle. Then in the
> onDrag function I check the new offsetLeft to figure out how far the
> hand has moved. If its gone left I shrink reduce the left box''s
width
> and expand the right box''s width.
>
> <div id="invitations">
> </div>
>
> <div id="drag1" style="height:200px; float:left">
> <img src="images/dragger.jpg"
alt="dragger">
> </div>
>
> <div id="characters">
>
> </div>
>
> <script type="text/javascript"
language="javascript">
> new Draggable("drag1", { starteffect:0, revert:true,
> constraint:''horizontal'', onStart:function(){
startResize(''drag1''); },
> onDrag:function(){ performResize(''drag1''); }});
>
> startResize = function(elementName){
> var element = document.getElementById(elementName);
> element.startX = element.offsetLeft;
> }
>
> performResize = function(elementName){
> var element = document.getElementById(elementName);
> var leftElement = document.getElementById("invitations");
> leftElement.style.width = parseInt(leftElement.style.width) +
> element.offsetLeft - element.startX + "px";
> }
>
> </script>
>
> Unfortunately this doesn''t seem to be working. I think it has
> something do with the fact that as I expand the left div''s width,
the
> offset for the "handle" is now huge.
>
> I''m guessing there''s a really simple solution since this
seems like
> basic functionality, but I''m new and can''t figure it out.
>
> Thanks in advance for the help!!
>
>
>
>
>
> == 2 of 2 => Date: Fri, Sep 28 2007 5:08 am
> From: Bebeth Steudel
>
>
> Never mind....really dumb mistake. Was adding the whole movement
> amount to the current width (not the original width). Sorry.
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: Image Slideshow (with clickable URL)
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/b59a261f84bbad44?hl=en
>
>
=============================================================================>
> == 1 of 2 => Date: Fri, Sep 28 2007 5:08 am
> From: playaz
>
>
> Hi,
>
> I am looking for solution to the following problem - I require a
> slideshow effect that will fade in/out a number of images each one
> clickable with a unique URL - this would require some javascript
> (possibly ajax)
>
> All the images/urls will come from an php array (eg dynamic rather
> than static)
>
> Can anyone point me in the right direction of advice on how to achieve
> this?
>
> Thanks in advance
>
>
>
>
>
> == 2 of 2 => Date: Fri, Sep 28 2007 10:46 am
> From: Prateek
>
>
> See you can get the details about the images like their URL, and the
> URL they are supposed to link to. You can get this data from PHP in
> the form of JSON, so that the JS code is easier to write. You will
> setup an Ajax.Request to get this data and then render all the images
> and hide them. Then you will show just one of them, and on the click
> of some button you can hide the one being shown now and switch to
> another one, by fading(Effect.Fade) the originial one and making the
> new one appear(Effect.Appear).
>
> If you are looking for help in terms of code you can also check out -
> http://www.prototypejs.org/api
> http://wiki.script.aculo.us/scriptaculous/show/HomePage
>
> On Sep 28, 5:08 pm, playaz
<playazcl...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> > Hi,
> >
> > I am looking for solution to the following problem - I require a
> > slideshow effect that will fade in/out a number of images each one
> > clickable with a unique URL - this would require some javascript
> > (possibly ajax)
> >
> > All the images/urls will come from an php array (eg dynamic rather
> > than static)
> >
> > Can anyone point me in the right direction of advice on how to achieve
> > this?
> >
> > Thanks in advance
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: drag and drop reset
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/8315bdbbc5a2bdf7?hl=en
>
>
=============================================================================>
> == 1 of 2 => Date: Fri, Sep 28 2007 6:39 am
> From: Tim Wisniewski
>
>
> I have a draggable, and I place it on a droppable. How do I make the
> draggable go back to its original postion? Thanks.
>
> -Tim
>
>
>
>
>
> == 2 of 2 => Date: Fri, Sep 28 2007 11:55 am
> From: Matt Foster
>
>
> If you dig into the guts of the Draggable class, you''ll see that a
> Draggable never removes the element from its parent, just effects its
> position properties to move it inside the document. To get the item
> such that its like cloning the object into a cart or something, use
> the "onEnd" event to make a clone, stuff the clone where you want
and
> just reset the position properties of the original and it will fall
> back into place. Which is really a hack of the class, i think this
> sort of functionality is so common that it should be more
> appropriately accommodated.
>
> Cheers,
> Matt
>
> On Sep 28, 9:39 am, Tim Wisniewski
<tjw3...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> > I have a draggable, and I place it on a droppable. How do I make the
> > draggable go back to its original postion? Thanks.
> >
> > -Tim
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: form request (ajax) method in 1.5.1
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/86fdb6a200fbb2e0?hl=en
>
>
=============================================================================>
> == 1 of 1 => Date: Fri, Sep 28 2007 8:37 am
> From: slon
>
>
> does request method of form object support other url for request than
> default ''action'' url? if not then will it be supported in
1.6?
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: evalJSON problem
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/7298c97b6dd1555a?hl=en
>
>
=============================================================================>
> == 1 of 2 => Date: Fri, Sep 28 2007 10:29 am
> From: "parsa.ghaffari-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org"
>
>
> Hey there,
> I have a FCKeditor(a WYSIWYG online html editor) and i want to bring
> it to a page by Ajax and JSON by a php request-catcher.
> I have sth like this in my ajax request:
>
> new Ajax.Request(''myactions.php'',
> {
> method:''get'',
> parameters: {action:''bringeditor'', id:<?php
echo $uid; ?>},
> onSuccess: function(transport){
> var response = transport.responseText;
> var data = response.evalJSON();
> $(''maincontent'').innerHTML=data.mytextarea;
> eval(data.jsaction);*/
> },
> onFailure: function(){ alert(''Something went
wrong...'') }
> });
>
> and in ''myactions.php'' :
> $textarea= "<textarea
id=''MyTextarea''
> name=''MyTextarea''>
> $txtareacontent</textarea>\\n";
> header("Content-type: text/javascript");
> $jsaction= "var oFCKeditor = new
> FCKeditor(''MyTextarea'');\\n";
> $jsaction.=
"oFCKeditor.ReplaceTextarea();\\n";
> echo "{mytextarea: $textarea, jsaction:
> $jsaction}";
>
> now the problem is that i dunno what user enters in the editor, and
> i''ve got problems handling characters that may conflict with the
JSON
> request ( like " \ \n etc) what can i do ? i tried $H ... no use. thX
>
>
>
>
>
> == 2 of 2 => Date: Fri, Sep 28 2007 11:29 am
> From: Matt Foster
>
>
> Hey there Parsa,
>
> I''d suggest just building the textarea in the page and hiding
until
> the user needs it, lazy loading like that can be a big headache as im
> sure you already know.
>
> To avoid complications with forward slashes you could use the string
> method, addslashes. http://us2.php.net/manual/en/function.addslashes.php
>
> Cheers,
> Matt
>
> On Sep 28, 1:29 pm,
"parsa.ghaff...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org"
> <parsa.ghaff...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> > Hey there,
> > I have a FCKeditor(a WYSIWYG online html editor) and i want to bring
> > it to a page by Ajax and JSON by a php request-catcher.
> > I have sth like this in my ajax request:
> >
> > new Ajax.Request(''myactions.php'',
> > {
> > method:''get'',
> > parameters: {action:''bringeditor'',
id:<?php echo $uid; ?>},
> > onSuccess: function(transport){
> > var response = transport.responseText;
> > var data = response.evalJSON();
> >
$(''maincontent'').innerHTML=data.mytextarea;
> > eval(data.jsaction);*/
> > },
> > onFailure: function(){ alert(''Something went
wrong...'') }
> > });
> >
> > and in ''myactions.php'' :
> > $textarea= "<textarea
id=''MyTextarea''
> name=''MyTextarea''>
> > $txtareacontent</textarea>\\n";
> > header("Content-type:
text/javascript");
> > $jsaction= "var oFCKeditor = new
> FCKeditor(''MyTextarea'');\\n";
> > $jsaction.=
"oFCKeditor.ReplaceTextarea();\\n";
> > echo "{mytextarea: $textarea, jsaction:
> $jsaction}";
> >
> > now the problem is that i dunno what user enters in the editor, and
> > i''ve got problems handling characters that may conflict with
the JSON
> > request ( like " \ \n etc) what can i do ? i tried $H ... no use.
thX
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: Why PeriodicalUpdater doesn''t work on Internet Explorer?
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/10ae5621a34d5558?hl=en
>
>
=============================================================================>
> == 1 of 2 => Date: Fri, Sep 28 2007 12:52 pm
> From: "www.webpolis.com.ar"
>
>
> I have the following code:
>
> <script type="text/javascript">
> Event.observe(window, ''load'', function() {
> var updater = new Ajax.PeriodicalUpdater(''chatbox'',
''chat.php'',
> {method: ''get'', asynchronous: true, frequency: 0.55,
decay: 2,
> onSuccess: function(){$(''chatbox'').scrollTop=$
> (''chatbox'').scrollHeight}});
> })
>
> </script>
>
> It''s for a chat program i''m making, but, the Periodical
Refresh
> doesn''t work on Internet Explorer. If i send a message from
Internet
> Explorer, i won''t see the message displayed but Firefox does see
the
> message. Anyway, here is the url:
>
> http://www.avecesestoytriste.com.ar/chat/main.php
>
> Please help me, i think that IE only refresh the DIV
(''chatbox'') one
> time and no more.
>
> Thanks
> Nico
>
>
>
>
>
> == 2 of 2 => Date: Fri, Sep 28 2007 12:59 pm
> From: Jonathan Weiss
>
>
>
> > Please help me, i think that IE only refresh the DIV
(''chatbox'') one
> > time and no more.
>
> Use HTTP POST and not GET, IE will othervise case the request, see
>
> http://blog.innerewut.de/2007/9/22/ie-doesn-t-let-us-rest
>
> Jonathan
>
> --
> Jonathan Weiss
> http://blog.innerewut.de
>
>
>
>
>
>
>
=============================================================================>
TOPIC: Event.observe doesn''t work
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/15c60ceb70a12b78?hl=en
>
>
=============================================================================>
> == 1 of 3 => Date: Fri, Sep 28 2007 3:18 pm
> From: cgusupport
>
>
> Hi,
>
> The following simple html doesn''t work with errors, why?
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
4.01//EN""http://www.w3.org/TR/
> html4/strict.dtd">
> <html>
> <title>click</title> <head>
> <h2>Click!</h2>
> <script type="text/javascript"
language="javascript">
> Event.observe(''myAnchor'', ''click'',
function(e){ alert(''clicked
> me!'') });
> </script>
> <a href="#null" id="myAnchor">1</a>
> </body>
> </html>
>
>
> Error: Event not define.
>
>
>
>
>
> == 2 of 3 => Date: Sat, Sep 29 2007 12:00 am
> From: Frank Schummertz
>
>
> cgusupport schrieb:
>
> > The following simple html doesn''t work with errors, why?
>
> You should load prototype.js if you want to use it ;-)
>
> <script type="text/javascript"
src="path/to/prototype.js"></script>
>
> Frank
>
>
> --
> "Laut einer Studie der deutschen Ärztevereinigung sterben immer
> mehr Rentner vor dem Computer. Sie drücken versehentlich die
> Tastenkombination Alt+Entfernen."
>
> http://www.landseer-stuttgart.de
> http://www.pn-cms.de
>
>
>
>
> == 3 of 3 => Date: Sat, Sep 29 2007 3:50 am
> From: redheat
>
>
> 1: you need to include prototype.js
> 2: you should always define observers after the element is written in
> your code, i.e., *after* <a ... id="myAnchor">. To do this,
either add
> your functions at the bottom of the page, or Event.observe(body,
> ''load'', function() { <FUNCTIONS> }); and add the
functions in here.
>
> Edd
>
> On Sep 28, 11:18 pm, cgusupport
<cgusupp...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> > Hi,
> >
> > The following simple html doesn''t work with errors, why?
> >
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML
4.01//EN""http://www.w3.org/TR/
> > html4/strict.dtd">
> > <html>
> > <title>click</title> <head>
> > <h2>Click!</h2>
> > <script type="text/javascript"
language="javascript">
> > Event.observe(''myAnchor'',
''click'', function(e){ alert(''clicked
> > me!'') });
> > </script>
> > <a href="#null" id="myAnchor">1</a>
> > </body>
> > </html>
> >
> > Error: Event not define.
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: Ajax.Updater doesn''t work with IE6 properly
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/778d8273dd134fa8?hl=en
>
>
=============================================================================>
> == 1 of 1 => Date: Fri, Sep 28 2007 11:57 pm
> From: justin <123jjy-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>
>
> My environment is Apache2+php5. The test doc is "ajaxtest.php",
which
> uses Ajax.Updater to load content from /test/test1/inphp.php. It works
> soomthly in Firefox. But nothing can be displayed in IE6, the brower
> got no response and the onComplete was not trigered. However, if I put
> the two doc under the same dir, everything goes well. Or, if I replace
> the inphp.php with a html doc such as "inhtm.html" in
/test/test1, the
> Updater then can load the doc''s content properly. Is there anyone
> having encountered such problem?
>
> Previously, I use Apache1.3+php4.3. Then, no such problem comes out.
>
> Thanks.
>
> //ajaxtest.php
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="en" lang="en">
> <HTML>
> <HEAD>
> <script type="text/javascript"
src="prototype.js"></script>
> <META NAME="Generator" CONTENT="EditPlus">
> <META NAME="Author" CONTENT="">
> <META NAME="Keywords" CONTENT="">
> <META NAME="Description" CONTENT="">
> <meta http-equiv="Content-Type"
content="text/html; charset=UTF-8"
> /
> >
> <TITLE> New Document </TITLE>
> </HEAD>
> <body class="bg">
>
> <div id="main" class="main"></div>
>
> <script>
> var myaj = new
Ajax.Updater(''main'',''http://address/test/test1/
> inphp.php'',{evalScripts:true,onComplete:function(req)
> {alert(req.responseText);}});
> </script>
> </body>
> </html>
>
>
>
>
>
>
>
>
=============================================================================>
TOPIC: How to call a javascript in parent page from a Prototype Window?
>
>
http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/d06d7337735b1bc8?hl=en
>
>
=============================================================================>
> == 1 of 2 => Date: Sat, Sep 29 2007 2:16 am
> From: syg6
>
>
>
> I''ve been messing around with this all morning. I''ve
looked at all the
> examples ... there doesn''t seem to be a mailing list for the
Prototype
> Window Class but people seem to know a lot about it on this list so
I''ll
> try
> my luck.
>
> I open a Prototype Window and display a list. When the user clicks on one
> of
> the elements in the list I would like to call a js function I have defined
> in the page that opened the Window. How do I do this?
>
> I''ve tried ''old school'' parent, parent.opener
... I''ve also tried using
> observers but they don''t seem to be triggering.
>
> Can someone throw me a clue?
>
> Thanks,
> Bob
> --
> View this message in context:
>
http://www.nabble.com/How-to-call-a-javascript-in-parent-page-from-a-Prototype-Window--tf4527604.html#a12918725
> Sent from the RubyOnRails Spinoffs mailing list archive at Nabble.com.
>
>
>
>
>
> == 2 of 2 => Date: Sat, Sep 29 2007 3:13 am
> From: Tobie Langel
>
>
> Hi,
>
> there actually is a forum (http://pwc-forum.xilinus.com/) and a
> mailing list (http://fates.multisite.site5.com/mailman/listinfo/
> javawin_xilinus.com) for PWC.
>
> Hope this helps.
>
> Regards,
>
> Tobie
>
> On Sep 29, 11:16 am, syg6
<s...-/E1597aS9LQAvxtiuMwx3w@public.gmane.org> wrote:
> > I''ve been messing around with this all morning. I''ve
looked at all the
> > examples ... there doesn''t seem to be a mailing list for the
Prototype
> > Window Class but people seem to know a lot about it on this list so
I''ll
> try
> > my luck.
> >
> > I open a Prototype Window and display a list. When the user clicks on
> one of
> > the elements in the list I would like to call a js function I have
> defined
> > in the page that opened the Window. How do I do this?
> >
> > I''ve tried ''old school'' parent,
parent.opener ... I''ve also tried using
> > observers but they don''t seem to be triggering.
> >
> > Can someone throw me a clue?
> >
> > Thanks,
> > Bob
> > --
> > View this message in context:
> http://www.nabble.com/How-to-call-a-javascript-in-parent-page-from-a-...
> > Sent from the RubyOnRails Spinoffs mailing list archive at Nabble.com.
>
>
>
>
>
>
>
=============================================================================>
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Spinoffs"
> group.
>
> To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.orgor
> visit http://groups.google.com/group/rubyonrails-spinoffs?hl=en
>
> To unsubscribe from this group, send email to
> rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>
> To change the way you get mail from this group, visit:
> http://groups.google.com/group/rubyonrails-spinoffs/subscribe?hl=en
>
> To report abuse, send email explaining the problem to
> abuse-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>
>
>
=============================================================================>
Google Groups: http://groups.google.com?hl=en
>
--
Bartos Pálné
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---