similar to: Re: Rails-spinoffs Digest, Vol 6, Issue 17

Displaying 20 results from an estimated 9000 matches similar to: "Re: Rails-spinoffs Digest, Vol 6, Issue 17"

2005 Nov 11
0
AW: array.each() on associative array?
Prototype.js seems to extend the standard javascript array constructor. It adds some methods and properties. If I do the for (key in array) I get additional keys that I didn’t add. ________________________________ Von: rails-spinoffs-bounces@lists.rubyonrails.org [mailto:rails-spinoffs-bounces@lists.rubyonrails.org] Im Auftrag von Gregory Hill Gesendet: Freitag, 11. November 2005 16:35
2005 Nov 11
2
array.each() on associative array?
Hi List! Is there a way to iterate through an associative array when prototype.js is used? arrayname.each(function (i) { alert(i); }); seems to work only for numeric arrays. Thanks, Josef Stich _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2005 Jul 20
3
examples of drag n drop
Sorry if this sounds cynical, ( i do love script.aculo.us scripts ) , but I am wondering if people know of some good real world examples of uses of drag n drop and sortable lists. such a cute script will likely be *ab*used as much as it is used. obviously the point here is to use script.aculo.us to improve the user interface rather than just have some k00l eFX. e.g. the drag n drop instantly
2006 Apr 08
0
Re: Rails-spinoffs] Ajax.Updater asynchronous => false
I just ran into this very problem myself. Yes, this is a bug in prototype. If you look in the code you will see that the relevent handlers and callbacks simply aren''t called with a synchronous request (onComplete is similarly not called). I submitted a patch <http://dev.rubyonrails.org/ticket/4657> over at dev.rubyonrails.org which fixes this behavior. If you decide to check it
2005 Dec 14
1
RE: Form.serialize and Ajax.Request ->fileserialization and encoding
I''ve not looked into how it''s done but adding an attachment in Gmail (UK version) uploads the file without refreshing the window, and http://www.yousendit.com <http://www.yousendit.com/> appears to send a file via some sort of RPC or AJAX. Maybe this could be another starting point for you. Paul Shannon Web Applications Developer Codeweavers Limited Tel: 0870 443
2006 Apr 06
0
script.aculo.us V1.6.1
V1.6.1 (2006-04-06): Sortable Trees, Prototype 1.5.0_rc0 (fixes IE mem leaks)! New features in V1.6.1 and V1.6.0: * Update to Prototype 1.5.0_rc0 * Sortable trees [thx Sammi Williams, sammi-EeRYXuc1dym5PgFUrJwY1aU/zSkkHjvu@public.gmane.org] See the functional test (test/functional/sortable_tree_test.html) and the CHANGELOG for more information! * Add Draggable object as third parameter
2006 May 18
1
RE: Rails-spinoffs Digest, Vol 12, Issue 29
Issue 1: <%= @pic %> instead of <% @pic %> -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of rails-spinoffs-request-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Sent: Wednesday, May 17, 2006 11:13 PM To:
2006 Mar 22
1
RE: Support for window scrolling for draganddrop
To answer my own question, yes. I looked at the trunk and it passes the option on from Sortable. Greg > -----Original Message----- > From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs- > bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Gregory Hill > Sent: Wednesday, March 22, 2006 12:51 PM > To:
2005 Sep 15
0
Re: Rails-spinoffs Digest, Vol 4, Issue 21
Hey all, We (http://www.weblinc.com) just launched a new site in which I have used the scriptaculous library in a few places. check out http://www.smashbox.com scriptaculous was used in creating the zoom controls on the product detail pages, and was also used with the sliding paginator on the product browse pages (some serious reworking is in progress on that, but it works). its also being
2006 Jan 18
2
Event.stopObserving and anonymous functions
Hi all, I'm using behaviour(.js) to add event handlers to all the table cells in a table (mouseover, mouseout, clickk). However, I'm also ditching the table and replacing it with an Ajax.Updater so I want to remove all the observers before I lose them. Unfortunately, the Event.observe calls were written as inline anonymous functions so, when calling Event.stopObserving, I'm supposed
2006 Mar 22
2
RE: Support for window scrolling for drag anddrop
Will that work with Sortable as well? > -----Original Message----- > From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs- > bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Thomas Fuchs > Sent: Wednesday, March 22, 2006 12:48 PM > To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >
2006 Feb 24
0
Ajax Training in Austria
Heya, I''m doing a one-day training on everything Ajax mainly focusing on script.aculo.us, but naturally including Prototype and a look on Ruby on Rails Ajax capabilities as well, on March 17, here in Vienna, Austria (for german speaking audiences). Here are the (in-german) details: In diesem eintägigen Seminar zeigt Ihnen Thomas Fuchs wie Sie die Benutzerfreundlichkeit und
2005 Nov 21
1
Re: Rails-spinoffs Digest, Vol 6, Issue 27
has anyone checked out : http://moofx.mad4milk.net/#introduction pretty cool stuff - nothing u can''t do in script.aculo.us, but interesting nevertheless cheers j -- ___________________________________________ Graffiti.net free e-mail @ www.graffiti.net Play 100s of games for FREE! http://games.graffiti.net/ Powered By Outblaze
2006 Jan 09
0
Re: Rails-spinoffs Digest, Vol 8, Issue 25
For removing or changing a given element, these two functions (from the element object) seem the business remove: function(element) { Element = $(element); Element.parentNode.removeChild(element); }, update: function(element, html) { $(Element).innerHTML = html.stripScripts(); setTimeout(function() {html.evalScripts()}, 10); }, Thanks to everybody for responding,
2005 Aug 04
0
Re: Rails-spinoffs Digest, Vol 3, Issue 5
would it be possible to have a similar edit-in-place moving images and divs about ?
2005 Jul 15
0
Re: Rails-spinoffs Digest, Vol 2, Issue 15
Maybe I''m doing something wrong, but whenever I use the fade/appear methods IE''s rendering engine has a fit. Anything that''s bolded becomes very aliased, and form elements have unusual borders and don''t update properly when set to disabled or not disabled (the element is disabled, but it doesnt appear to be. Once you click on it it updates.) Firefox runs it
2005 Jun 28
0
Re: Rails-spinoffs Digest, Vol 1, Issue 4
Hey, I''ve been using prototype and script.aculo.us quite a bit lately and felt the need for a unit-testing framework. But none of the frameworks I found were simple or graphical. So i created littleUnit. I figured other people here might find it helpful, you can check it out here <a
2002 Nov 01
1
init.data function error
We had been using R1.2.3 "print tip lowess function" as described by Terry Speed's group to normalize microarray data and up until this week the commands we were using were working fine. First, we load our data using arrayname<-read.table("filename", header=T) and then check that the table is OK. We format the data list using setup1<-init.data() and usually get a
2011 May 24
0
How to resolve Centos Linux Version 5.5 x86_32 C​allgrind Version 3.6.1 cg_annotat​​​e : Line 1 Missing command line error?
Good afternoon, We are running callgrind and cg_annotate version 3.6.1 on Centos Linux Version 5.5 x86_32. One month ago Mr. Josef Weidenorfer issued a special patch that fixed callgrind on Centos Linux Version 5.5 x86_32. We can now profile complex C++ programs which use our own shared library libmdMatchup.so. However, when we use version 3.6.1 cg_annotate callgrind.out.22533 --auto = yes
2005 May 24
1
Performance problem when writing large files!
Hello Listmembers! This is the first time i'm posting to this list. I'm not a native speaker, so excuse my mistakes. We're using Redhat with Kernel 2.4.29, 12 GB of memory, Dual Itanium Processors Scasi Raid controller with filesystem ext3 Samba V 3.0.14a We encounter following problem. If somebody on the network writes big files from windows clients to a samba shared