search for: xilinus

Displaying 17 results from an estimated 17 matches for "xilinus".

Did you mean: linus
2007 Jan 12
5
Popup/Tooltip Dialog windows using AJAX?
Hello, Can anybody point me to a sample of popup/tooltip using Prototype? I saw examples for windows and also for tool tip but what I want is a little bit different. I want the same fuctionality which exists at yahoo mail login. https://login.yahoo.com/ -> on the right corner you have a Prevent Password Theft image. On mouse over you see a tooltip. Now the good think in this solution is that
2006 May 23
4
Version 0.80 of Prototype Window Class
Hi I have just posted a new release of my Prototype Window Class (http://blogus.xilinus.com/pages/javawin) Seb
2006 Sep 05
1
Prototype-Carousel 0.1
Hi I have done a light implementation of the YUI Carousel Feel free to try or use it http://prototype-carousel.xilinus.com/ Seb --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this g...
2007 May 30
3
how to create a simple DHTML dialog
I am looking to create a simple dialog window like this on a page: http://developer.yahoo.com/yui/examples/container/simpledialog/2.html I know scriptaculous comes with Rails, not YUI, but I can''t find anything similar there. Is there any shortcut to doing this with existing plugins or core stuff?, or must I download another toolkit? thanks Sam
2006 Jun 30
6
using rjs
Hi I am relatively new to ruby on rails. I want to use this javascript bundle: http://prototype-window.xilinus.com/index.html How would I call those functions in an rjs file? example: win = new Window(''window_id'', {title: "Sample", top:100, left:350}) win.getContent().innerHTML = "<h1>Hello world !!</h1>"; win.setDestroyOnClose(); win.showCenter(); Thank...
2006 Apr 04
1
Prototype Window Class 0.65
Hi I just want to say that I have done a new release of my Prototype Window Class ( http://blogus.xilinus.com/pages/javawin ) I added few things according to a lot of emails I got. Not sure if it''s the correct mailing list to use. If not let me know where I can post this announce. Thanks Seb
2006 Mar 25
1
Prototype Window Class v0.5
...I have developed a Window class in Javascript based on prototype library. It allows you to have resizable window in your web page. You can change easily the look and feel and use script.aculo.us effects to show and hide windows. Download, documentation and samples are here: http:// blogus.xilinus.com/pages/javawin Feel free to use it. Thanks Seb
2008 Jun 20
0
Slider as Scrollbar in a window
Hi, I ran into deep problems using scrollbar features shown at http://www.aldenta.com/examples/script.aculo.us/. The scripts work as expected, but if i use the separate window effect (based on prototype and script aculo us, too) shown at http://prototype-window.xilinus.com the scrollbar doesn''t work anymore. I tried and studied the source code for both subprojects but i have really no idea why the scrollbars dont''t work in a separate window. I did not use an iFrame for the window (simple div). Here is my code: window effect from : http://prot...
2006 Mar 29
6
Prototype Window Class 0.6
Hi I have just released a new version of my Prototype Window Class included modal windows and a lot of stuff that some people send me, thanks to all of you guys for your support. Seb
2006 Apr 03
2
popup forms?
I searched a bit, but have come up short. Are there any libraries for creating popup forms w/ rails? These would not be displayed in a separate browser window, but rather made visible over an open page and adjacent to a clicked link -- similar to the google maps baloons, or the gmail popups. Lots of other examples out there... Thanks --------------------------------- Talk is cheap. Use
2006 Jul 17
0
Is there an example of using "Prototype Window Class'' with rails?
I feel like a bit of an idiot asking this but does anyone have an example of http://prototype-window.xilinus.com/index.html being used in rails. Should I try and feed it through page.call using rjh. Like this: page.call (''win = new Window("window_id", {className: "mac_os_x", title: "Sample", width:200, height:150});win.getContent().innerHTML = "<h1...
2006 Jun 30
0
Prototype Window Class v0.95
Hi I have posted an new releases of my Prototype Window Class (v0.95): http://prototype-window.xilinus.com . This version allows you to set window/dialog contents by using an Ajax requests. This is cool because you can create content in a partial having all the power of Rails to do it. Seb
2006 Apr 16
0
Prototype Window Class v0.70
I have released a new version of my Prototype Window Class (http:// blogus.xilinus.com/pages/javawin) - Add autoposition in setContent. The window will be at the exact element location - Add draggable/closable parameter if you need to specify is the window is draggable/closable or not - Add parent parameter if you need a specific parent element of the window instead of bod...
2007 May 29
1
Modal Window Stealing Elements from Form. Need Elegant Solution.
I''m using Prototype.js with Control.modal to create a modal window on my IPB Forum which takes all the various topic posting/replying/ editing options and places them into a Modal window. The inherent nature of this action is to take the contents of whatever DIV I told Control.Modal to make a modal window out of and place the entire innerHTML of that DIV into a separate DIV outside the
2006 Jun 12
6
Prototype Window Class v0.85
Hi I just want to annouce a new release of my Prototype Window Class with a new website with full documentation and new samples (I hope it''s easier to understand now :)). http://prototype-window.xilinus.com/ Thanks again to all of you guys for your help. Seb PS Dj T, have you finished your Rails plugin?
2006 Apr 10
24
Proposal of "Resizable" javascript library
Hi, All. I''ve developed the small javascript library to make the widgets "resizable". Please try attached file or following URL URL: http://221.112.61.214/~kzk/others/mixi/resizer.html Now I wish script.aculo.us developers to merge this into the "script.aculo.us". Is there any chance of merge? Is this a right place to ask this question? Thanks in advance. Kazuki
2006 May 25
0
Test redirect_to fails
Hi I have a weird issue on functional testing Here is the redirect I have in my controller: redirect_to :controller => "/param/user", :action => :edit, :id => @current_user.id And here is my functional test: assert_redirected_to :controller => "/param/user", :action => :edit, :id => users(:vincent).id And when I run test I have this error