[Proto-Scripty] Re: Modal window pop-up

2008-12-18 Thread Alex Mcauley

if you want a prototype based modal window then try this 
http://scripteka.com/script/litbox .. its is very configurable and with a 
little javascript knowledge you can make it ajaxified with requests to fill 
the window with anything you like .

I used it as a base to build my own as i needed flexibility but generally if 
you dont need the felxability i did then it will do you just fine


Regards
Alex


- Original Message - 
From: jrochkind rochk...@jhu.edu
To: Prototype  script.aculo.us prototype-scriptaculous@googlegroups.com
Sent: Wednesday, December 17, 2008 10:33 PM
Subject: [Proto-Scripty] Re: Modal window pop-up



I just spent like two hours googling for this, and found lots of old
and no longer supported stuff, until thinking of specifically
searching within the prototype listserv, and finding this thread. So,
thanks! But it's neccesarily easy to find on Google if you don't know
what you're looking for.

I'm still curious what other developer's opinions are of the various
options on scripteka, hard to tell which ones are still actively
developed etc.

Jonathan

On Nov 26, 9:55 am, Brian Williams brianw1...@gmail.com wrote:
 well, to be fair, he was probably thinking of a prototype solution and not
 necessarily the jQuery solution.

 But, in on the flip side i have the following:

 http://proto-scripty.wikidot.com/extras

 but i do agree, a tiny bit of research would have been more prudent.

 On Wed, Nov 26, 2008 at 9:43 AM, Alex Mcauley 

 webmas...@thecarmarketplace.com wrote:

  They are not tips for prototype they are jQuery tips and are on the 
  jQuery
  page!!

  Regards

  Alex
  - Original Message -
  From: Chris Brody chris.br...@gmail.com
  To: prototype-scriptaculous@googlegroups.com
  Sent: Wednesday, November 26, 2008 12:18 PM
  Subject: [Proto-Scripty] Re: Modal window pop-up

   Quick sugggestion from a beginner to consider putting some of these
   ideas on FAQ  link pages?

   On Wed, Nov 26, 2008 at 1:10 PM, Alex Mcauley
   webmas...@thecarmarketplace.com wrote:
   if you want to use the jquery one you can tell jquery to not conflict
   with
   prototype's namespace

   $jQuery=jQuery.noConflict();

   then ... $jQuery('#some-id').someJqueryFunction() .. for jQuery 
   methods
   and $('some-id').somProtoFunction() .. for prototype methods

   Regards

   Alex

   - Original Message -
   From: Gabriel Gilini
   To: prototype-scriptaculous@googlegroups.com
   Sent: Tuesday, November 25, 2008 5:37 PM
   Subject: [Proto-Scripty] Re: Modal window pop-up
  http://scripteka.com/
   Click in the window tag.

   And please google before posting.

   Gabriel Gilini

  www.usosim.com.br
   gabr...@usosim.com.br
   gabr...@souagil.com.br

   On Tue, Nov 25, 2008 at 2:01 PM, livewire9174 markmch...@gmail.com
   wrote:

   Hi,
   Can anybody recomend me a modal pop-up library to use ? I tried 
   using
   thickbox ( based on jquery) but this wont work as it is conflicting
   with the prototype accordion i am using.

   Has anybody tried something like this?





--~--~-~--~~~---~--~~
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 group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Modal window pop-up

2008-12-17 Thread jrochkind

I just spent like two hours googling for this, and found lots of old
and no longer supported stuff, until thinking of specifically
searching within the prototype listserv, and finding this thread. So,
thanks! But it's neccesarily easy to find on Google if you don't know
what you're looking for.

I'm still curious what other developer's opinions are of the various
options on scripteka, hard to tell which ones are still actively
developed etc.

Jonathan

On Nov 26, 9:55 am, Brian Williams brianw1...@gmail.com wrote:
 well, to be fair, he was probably thinking of a prototype solution and not
 necessarily the jQuery solution.

 But, in on the flip side i have the following:

 http://proto-scripty.wikidot.com/extras

 but i do agree, a tiny bit of research would have been more prudent.

 On Wed, Nov 26, 2008 at 9:43 AM, Alex Mcauley 

 webmas...@thecarmarketplace.com wrote:

  They are not tips for prototype they are jQuery tips and are on the jQuery
  page!!

  Regards

  Alex
  - Original Message -
  From: Chris Brody chris.br...@gmail.com
  To: prototype-scriptaculous@googlegroups.com
  Sent: Wednesday, November 26, 2008 12:18 PM
  Subject: [Proto-Scripty] Re: Modal window pop-up

   Quick sugggestion from a beginner to consider putting some of these
   ideas on FAQ  link pages?

   On Wed, Nov 26, 2008 at 1:10 PM, Alex Mcauley
   webmas...@thecarmarketplace.com wrote:
   if you want to use the jquery one you can tell jquery to not conflict
   with
   prototype's namespace

   $jQuery=jQuery.noConflict();

   then ... $jQuery('#some-id').someJqueryFunction() .. for jQuery methods
   and $('some-id').somProtoFunction() .. for prototype methods

   Regards

   Alex

   - Original Message -
   From: Gabriel Gilini
   To: prototype-scriptaculous@googlegroups.com
   Sent: Tuesday, November 25, 2008 5:37 PM
   Subject: [Proto-Scripty] Re: Modal window pop-up
  http://scripteka.com/
   Click in the window tag.

   And please google before posting.

   Gabriel Gilini

  www.usosim.com.br
   gabr...@usosim.com.br
   gabr...@souagil.com.br

   On Tue, Nov 25, 2008 at 2:01 PM, livewire9174 markmch...@gmail.com
   wrote:

   Hi,
   Can anybody recomend me a modal pop-up library to use ? I tried using
   thickbox ( based on jquery) but this wont work as it is conflicting
   with the prototype accordion i am using.

   Has anybody tried something like this?


--~--~-~--~~~---~--~~
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 group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Modal window pop-up

2008-11-26 Thread Alex Mcauley
if you want to use the jquery one you can tell jquery to not conflict with 
prototype's namespace

$jQuery=jQuery.noConflict();

then ... $jQuery('#some-id').someJqueryFunction() .. for jQuery methods
and $('some-id').somProtoFunction() .. for prototype methods

Regards

Alex
  - Original Message - 
  From: Gabriel Gilini 
  To: prototype-scriptaculous@googlegroups.com 
  Sent: Tuesday, November 25, 2008 5:37 PM
  Subject: [Proto-Scripty] Re: Modal window pop-up


  http://scripteka.com/
  Click in the window tag.

  And please google before posting.

  Gabriel Gilini

  www.usosim.com.br
  [EMAIL PROTECTED]
  [EMAIL PROTECTED]



  On Tue, Nov 25, 2008 at 2:01 PM, livewire9174 [EMAIL PROTECTED] wrote:


Hi,
Can anybody recomend me a modal pop-up library to use ? I tried using
thickbox ( based on jquery) but this wont work as it is conflicting
with the prototype accordion i am using.

Has anybody tried something like this?





  

--~--~-~--~~~---~--~~
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 group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Modal window pop-up

2008-11-26 Thread Brian Williams
well, to be fair, he was probably thinking of a prototype solution and not
necessarily the jQuery solution.

But, in on the flip side i have the following:

http://proto-scripty.wikidot.com/extras

but i do agree, a tiny bit of research would have been more prudent.


On Wed, Nov 26, 2008 at 9:43 AM, Alex Mcauley 
[EMAIL PROTECTED] wrote:


 They are not tips for prototype they are jQuery tips and are on the jQuery
 page!!

 Regards

 Alex
 - Original Message -
 From: Chris Brody [EMAIL PROTECTED]
 To: prototype-scriptaculous@googlegroups.com
 Sent: Wednesday, November 26, 2008 12:18 PM
 Subject: [Proto-Scripty] Re: Modal window pop-up


 
  Quick sugggestion from a beginner to consider putting some of these
  ideas on FAQ  link pages?
 
  On Wed, Nov 26, 2008 at 1:10 PM, Alex Mcauley
  [EMAIL PROTECTED] wrote:
  if you want to use the jquery one you can tell jquery to not conflict
  with
  prototype's namespace
 
  $jQuery=jQuery.noConflict();
 
  then ... $jQuery('#some-id').someJqueryFunction() .. for jQuery methods
  and $('some-id').somProtoFunction() .. for prototype methods
 
  Regards
 
  Alex
 
  - Original Message -
  From: Gabriel Gilini
  To: prototype-scriptaculous@googlegroups.com
  Sent: Tuesday, November 25, 2008 5:37 PM
  Subject: [Proto-Scripty] Re: Modal window pop-up
  http://scripteka.com/
  Click in the window tag.
 
  And please google before posting.
 
  Gabriel Gilini
 
  www.usosim.com.br
  [EMAIL PROTECTED]
  [EMAIL PROTECTED]
 
 
  On Tue, Nov 25, 2008 at 2:01 PM, livewire9174 [EMAIL PROTECTED]
  wrote:
 
  Hi,
  Can anybody recomend me a modal pop-up library to use ? I tried using
  thickbox ( based on jquery) but this wont work as it is conflicting
  with the prototype accordion i am using.
 
  Has anybody tried something like this?
 
 
 
  
 
 
  
 


 


--~--~-~--~~~---~--~~
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 group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Modal window pop-up

2008-11-26 Thread Brian Williams
that's a whole different issue lol...



On Wed, Nov 26, 2008 at 10:17 AM, Chris Brody [EMAIL PROTECTED] wrote:


 Yes, I was referring to the Prototype solutions. My point was to keep
 links to commonly-referenced sites such as http://scripteka.com/ 
 http://proto-scripty.wikidot.com/extras within the official Prototype
 webpages. Just an idea...

 On Wed, Nov 26, 2008 at 3:55 PM, Brian Williams [EMAIL PROTECTED]
 wrote:
  well, to be fair, he was probably thinking of a prototype solution and
 not
  necessarily the jQuery solution.
 
  But, in on the flip side i have the following:
 
  http://proto-scripty.wikidot.com/extras
 
  but i do agree, a tiny bit of research would have been more prudent.
 
 
  On Wed, Nov 26, 2008 at 9:43 AM, Alex Mcauley
  [EMAIL PROTECTED] wrote:
 
  They are not tips for prototype they are jQuery tips and are on the
 jQuery
  page!!
 
  Regards
 
  Alex
  - Original Message -
  From: Chris Brody [EMAIL PROTECTED]
  To: prototype-scriptaculous@googlegroups.com
  Sent: Wednesday, November 26, 2008 12:18 PM
  Subject: [Proto-Scripty] Re: Modal window pop-up
 
 
  
   Quick sugggestion from a beginner to consider putting some of these
   ideas on FAQ  link pages?
  
   On Wed, Nov 26, 2008 at 1:10 PM, Alex Mcauley
   [EMAIL PROTECTED] wrote:
   if you want to use the jquery one you can tell jquery to not conflict
   with
   prototype's namespace
  
   $jQuery=jQuery.noConflict();
  
   then ... $jQuery('#some-id').someJqueryFunction() .. for jQuery
 methods
   and $('some-id').somProtoFunction() .. for prototype methods
  
   Regards
  
   Alex
  
   - Original Message -
   From: Gabriel Gilini
   To: prototype-scriptaculous@googlegroups.com
   Sent: Tuesday, November 25, 2008 5:37 PM
   Subject: [Proto-Scripty] Re: Modal window pop-up
   http://scripteka.com/
   Click in the window tag.
  
   And please google before posting.
  
   Gabriel Gilini
  
   www.usosim.com.br
   [EMAIL PROTECTED]
   [EMAIL PROTECTED]
  
  
   On Tue, Nov 25, 2008 at 2:01 PM, livewire9174 [EMAIL PROTECTED]
   wrote:
  
   Hi,
   Can anybody recomend me a modal pop-up library to use ? I tried
 using
   thickbox ( based on jquery) but this wont work as it is conflicting
   with the prototype accordion i am using.
  
   Has anybody tried something like this?
  
  
  
   
  
  
   
  
 
 
 
 
 
  
 

 


--~--~-~--~~~---~--~~
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 group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---