Re: [Rails-spinoffs] Sudden Javascript Console noise in firefox

2005-12-28 Thread John Butler
You're just seeing warning messages. The warnings being thrown, while valid, are irrelevant. The pieces of code its "choking on" are all fine. Nothing to worry about (in my professional opinion). -John On Dec 28, 2005, at 8:11 PM, Brian Peiris wrote: Thanks for the link Rahul, the new conso

Re: [Rails-spinoffs] Sudden Javascript Console noise in firefox

2005-12-28 Thread Brian Peiris
Thanks for the link Rahul, the new console should be helpful, but it doesn't fix my problem,I still get a lot of noise, and they don't seem to be trivial CSS problems. Is this common, should I be worried?here are all the warnings from the console: Warning: test for equality (==) mistyped as assignm

Re: [Rails-spinoffs] Sortable - can we make one or more elements in a list sticky?

2005-12-28 Thread Douglas Forrest
The "only" option in Sortable.create "Further restricts the selection of child elements to only encompass elements with the given CSS class (or, if you provide an array of strings, on any of the classes)". So just include all the class elements except those you want to be sticky in "only". W

Re: [Rails-spinoffs] Problem with IE

2005-12-28 Thread Jerod Venema
I'm no guru...but shouldn't the "revert" option be in single quotes?-JerodOn 12/28/05, Francisco Calderon < [EMAIL PROTECTED]> wrote:Hi there, let me introduce myself, i am a web developer from venezuela, my english is not the best, sorry by that... i am developing a form builder, is simple, just d

[Rails-spinoffs] Problem with IE

2005-12-28 Thread Francisco Calderon
Hi there, let me introduce myself, i am a web developer from venezuela, my english is not the best, sorry by that...i am developing a form builder, is simple, just dragging form elements to a droppable container, all works well but im showing to my friends and... surprise!!!  doesn't work in Intern

Re: [Rails-spinoffs] wiki down

2005-12-28 Thread Thomas Fuchs
Heya, I know the wiki is down quite often, as the system i use (instiki) was not designed to handle the load. I'm currently busy preparing to move to a postgres-backed instiki version that should be able to handle the load well and do away with the outages. It should go online sometime next week

Re: [Rails-spinoffs] Custom tooltip component?

2005-12-28 Thread Amol Katdare
Awesome! Thanks a ton. Regards, Amol On 12/28/05, Nicolas <[EMAIL PROTECTED]> wrote: Hi,With overlib, you have a DELAY parameters to active a tooltip after a delay.ex : overlib('This popup will open in about a 1/4 second', DELAY, 250)Regards,Nico On 12/28/05, Amol Katdare <[EMAIL PROTECTED]> wrot

RE: [Rails-spinoffs] Re: Prototype OOP example

2005-12-28 Thread Ryan Gahl
The article condones creation of custom HTML tags… please don’t do that. The first part, on OOP jscript is moderately useful for those who don’t already know how to do it, but the rest can be tossed. If you start creating custom HTML tags you will be going down a very bad road with all sort

Re: [Rails-spinoffs] Re: Prototype OOP example

2005-12-28 Thread Eric Fleming
Here is a great article on OOP _javascript_.  It at least gives an introduction.  Don't let the title fool you, the article is almost all about OOP _javascript_.  It was very helpful to me. http://jdj.sys-con.com/read/152288.htmOn 12/28/05, Ryan Gahl <[EMAIL PROTECTED]> wrote: Dear Original Poster,

Re: [Rails-spinoffs] Custom tooltip component?

2005-12-28 Thread Nicolas
Hi,With overlib, you have a DELAY parameters to active a tooltip after a delay.ex : overlib('This popup will open in about a 1/4 second', DELAY, 250)Regards,Nico On 12/28/05, Amol Katdare <[EMAIL PROTECTED]> wrote: Thanks Michael and François.Tooltip.js is great, but it doesn't solve the "tricky" p

Re: [Rails-spinoffs] Sortable - can we make one or more elements in a list sticky?

2005-12-28 Thread Lindsey Simon
Here's a patch against a svn up of a moment ago (rev 3358) ;) Jerod Venema in message Re: [Rails-spinoffs] Sortable - can we make one or more elements in a list sticky? (Wed, 12/28 13:01): > Lindsey, > > Do you have an example of the "delay" functionality? I'd like to take a look > at that. >

Re: [Rails-spinoffs] Sortable - can we make one or more elements in a list sticky?

2005-12-28 Thread Jerod Venema
Lindsey,Do you have an example of the "delay" functionality? I'd like to take a look at that.-JerodOn 12/28/05, Lindsey Simon <[EMAIL PROTECTED]> wrote:In a sortable list, is there a way to say, pass a className whereby some of the elements in the sortable element would not becomedraggables/droppa

[Rails-spinoffs] Sortable - can we make one or more elements in a list sticky?

2005-12-28 Thread Lindsey Simon
In a sortable list, is there a way to say, pass a className whereby some of the elements in the sortable element would not become draggables/droppables? If not, it seems like it could be implemented similarly to the handle option.. Any interest? Also - I submitted a patch that adds the option "de

Re: [Rails-spinoffs] Custom tooltip component?

2005-12-28 Thread Amol Katdare
Thanks Michael and François. Tooltip.js is great, but it doesn't solve the "tricky" part. Same with overLIB. To rephrase my question, Is there any way to enable callbacks (to user defined functions) when: 1. Mouse has been hovering over a link for x seconds. 2. A corresponding callback when mouse

Re: [Rails-spinoffs] Custom tooltip component?

2005-12-28 Thread Michael Roper
Tooltip.js is built on prototype/scriptaculous, might be worth a look- in.. http://tooltip.crtx.org/ cheers, Michael On 28/12/2005, at 11:25 PM, Amol Katdare wrote: I am looking to develop a custom tool tip component for a list of links. ...Which is kind of not that big a deal. But, an

Re: [Rails-spinoffs] Custom tooltip component?

2005-12-28 Thread Francois Beausoleil
Hi ! 2005/12/28, Amol Katdare <[EMAIL PROTECTED]>: > Any suggestions? Please take a look at overLIB. It is available from http://www.bosrup.com/web/overlib/ It is available under an Artistic license. I used it in a todo-like application to show a longer description about what each item was su

[Rails-spinoffs] Custom tooltip component?

2005-12-28 Thread Amol Katdare
I am looking to develop a custom tool tip component for a list of links. ...Which is kind of not that big a deal. But, and this seems to be the tricky part, I also want to be able to set/specify the interval threshold after which to display the tool tip. (and by nature of "tool tip", don't display

RE: [Rails-spinoffs] Re: Prototype OOP example

2005-12-28 Thread Ryan Gahl
Dear Original Poster, Try this... superClass = Class.create(); superClass.prototype = { blah blah blah... } subclass = Class.create(); subclass.prototype = { initialize: function(name, position) { Object.extend(this, new superClass(name)); this.position =

RE: [Rails-spinoffs] Sudden Javascript Console noise in firefox

2005-12-28 Thread Rahul Bhargava
Yeah, The CSS debug message are nice, but you probably want to install this console replacement:   http://forums.mozillazine.org/viewtopic.php?t=318102   Very useful.   rahul   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Peiris Sent: Wednesday, Dece