Displaying 20 results from an estimated 6000 matches similar to: "Prototype Features?"
2006 Feb 21
7
accordion (outlook bar thingy) help
Does anybody have a solution that really works nice? I know about:
http://wiki.script.aculo.us/scriptaculous/show/accordion%20feature but I was
hoping someone had worked out the kinks. I''m really looking for something
like: http://openrico.org/rico/demos.page?demo=rico_accordion
Thanks for your time.
Joe
_______________________________________________
Rails-spinoffs mailing list
2005 Nov 20
3
rounded corners in rails apps ?
Hi all
I like very much rounded corners and often used thee well known nifty
Javascript approach for that, Recently I discovered Rico (
http://openrico.org), which does the same and is much simpler to use (don''t
require additional css files) and is based on prototype.js. This is all very
nice, but there is currently one problem, the latest Rico library seems to
require prototype 1.3.1,
2006 Feb 24
2
declaring draggable object that holds it position
Hi i posted this question earlier on how to create a droppable div(New to
Ajax), and i have just realised that my code does work, however the function
doesn''t work the way I expected it to, I would like my draggable to remain
where it was dropped, currently I have a draggable div and a droppable div.
I would like to try create a puzzle type game which has a set amount of
droppables and an
2006 Feb 08
3
OpenRico LiveGrid or similar
Hi
Has anyone used OpenRico''s "on-demand listbox" LiveGrid or something
similar in a Rails app already? How well does it behave?
I''m asking this because I need a scrollable list but the number of
records in the table could be well above 5000. In the past I''ve used
similar "on-demand fetchings" in desktop apps and it was a real
blessing (the
2006 Mar 03
6
[PATCH] Effect.Accordion (not from the wiki)
Hello boys and girls
In the ever-loving spirit of OSS, here''s another feature for s.a.u.
In particular it''s called Effect.Accordion, and is a scriptaculified
version of openrico''s Accordion.
Work in progress, I''ll submit further modifications as the come in, but
this is 90% of what needs to be done. I anticipate some bugs when I
start using it more.
Tested
2007 Jan 24
6
dojo and prototype compatibility?
are there any compatible issues that exist when trying to use both
prototype and dojo at the same time?
--~--~---------~--~----~------------~-------~--~----~
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
2007 Nov 07
5
Prototype error - iterator is not a function
I''m starting to learn to use Prototype (v1.5.1.1) along with Mootools.
However I keep bumping into the same problem:
All of the inserts result in the error "iterator is not a function" at
line 542 of Prototype
memo = iterator(memo, value, index);
Am I missing something obvious here? I''m wondering if there''s an
incompatibility between Prototype and Domino
2006 May 09
12
prototype: leak with Element.extend
Had a nasty memory leak that was seriously slowing down the browser and
eating up a couple megabytes every reload. I was using:
$$(''.dyntable'').each(function(elm) { new DynTable(elm) });
To set up my behavior, but discovered that just running:
$$(''.dyntable'');
Caused the memory leak all by itself.
The fix I found for it was to change Element.extend to a
2007 Aug 31
5
prototype
Hi,
is there some way to remove all event listeners for the specific
element?
Thanks for help.
--~--~---------~--~----~------------~-------~--~----~
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,
2008 Jun 09
3
Prototype + Chess !?
Not sure how many of you saw this article =>
http://www.prototypejs.org/2008/5/28/an-interview-with-piotr-dachtera
but Chess.com is looking for 1 more JavaScript guru to help build out
Chess.com Live Chess! We need help optimizing the javascript libraries
we are using, etc. Please email chessdev=>gmail if you are interested.
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You
2008 Jul 11
1
prototype.js breaks treemenus from pear HTML_TreeMenu in safari
hi all
i see a very strange behavior in safari when using prototype.js and
the pear HTML_TreeMenu
to reproduce get prototype.js (http://www.prototypejs.org/assets/
2008/1/25/prototype-1.6.0.2.js) and treemenu.js (http://cvs.php.net/
viewvc.cgi/pear/HTML_TreeMenu/TreeMenu.js?revision=1.22).
and test the following html with safari on mac or windows (http://
www.apple.com/safari/download/)
2007 Apr 04
3
Ajax.Updater -- returning failure from a php script
If I give Ajax.Updater a first arg like{ success: ''replies'', failure:
''errors''}, how do I return an error from a php script so the message
goes in ''errors'' rather than ''replies''?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on
2007 Jan 19
7
Prototype.js: Is there an "in_array"-like function?
Hi
i was wondering if there is a quick way to search for a item within an
array. Here is my approach for this functionality. It''s an prototype
for an Array method called "has":
Array.prototype.has = function(needle) {
for (var i=0;i<this.length;i++) {
if(this[i] == needle){ return true; }
}
return false;
}
var someArray = [''jim'',
2008 Mar 21
4
Prototype.js event.stop(event) FF2 not working
stop: function(event) {
if (event.preventDefault) {
event.stopPropagation();
event.preventDefault();
} else {
event.returnValue = false;
event.cancelBubble = true;
}
}
/* br original
stop: function(event) {
Event.extend(event);
event.preventDefault();
event.stopPropagation();
event.stopped = true;
}
*/
};
2006 Jan 21
8
scriptaculous accordion feature - Jump?
Trying the accordion feature as offered at:
http://wiki.script.aculo.us/scriptaculous/show/accordion+feature
The objective is to remove the "jump" reported in the Rico accordion
feature. My demo of the scriptaculous feature, however has a noticeable jump
when tested if FireFox. and IE Win. See:
http://www.jimdavis.org/accord3.html
Have I implemented this incorrectly?
Jim
2008 Jul 07
4
script.aculo.us slider - this and event handler - depending sliders
Hi,
I successfully created depending sliders with prototype and slider.js.
See the result here: http://www.soa-world.de/dev/slider/slider.html
(here''s the code: http://pastebin.com/ma1e82eb)
There is one problem with my code. What I do is I have a sliders class
"function sliders()"
inside I create the 5 sliders in a for loop and store them inside an
array which is a member of
2007 Nov 09
1
Prototype API Docs inconsistency
Hi,
If you follow those two links (watch the case difference) :
- http://www.prototypejs.org/api/element/getElementsBySelector
- http://www.prototypejs.org/api/element/getelementsbyselector
You''ll see that the first one does not indicate the 1.6 deprecation
even though it is the same method.
I guess those docs where generated, so the problem might exists
elsewhere in the docs.
Thanks
2008 Feb 15
2
Where to report typos/bugs in the Prototype API online docs?
I was wondering where to report typos/bugs for the Prototype online
API docs (http://prototypejs.org/api)? Seems a bit overkill to submit
typos to the Rail Trac - but perhaps that''s the correct place?
Additionally, the website indicates that this documentation is written
in Markdown. Is the documentation from which the online API is
generated in SVN? I saw a documentation branch
2006 Jan 22
3
"onload" event handler inside a div
Hi. I need help on what is essentially putting an "onload" event handler
into a div. I am using render :partial and when the partial is loaded, I
would like the divs to show using an effect from a library such as
scriptaculous or moofx. However, there is no "onload" for a div. I was
wondering what alternative methods I should use to achieve this.
Thanks!
--
Posted via
2007 Aug 03
1
Prototype AJAX functions.
Hi all!
I have a form that when user fills he will press submit button which
have effect "onClick:previewMessage()". previewMessage() function is
an Ajax.update function.
I would like to know how can I get form data into other file which I''m
accessing with AJAX?
I hope I made myself clear.
--~--~---------~--~----~------------~-------~--~----~
You received this message