Displaying 14 results from an estimated 14 matches for "m3nt0r".
2007 Jun 15
13
API of scriptaculous
Hi all,
Is there anywhere an API with the different method and descrption of
the different JS of SCRIPTACULOUS ?
Thanks for your good work in Prototype and Scriptaculous !!
--
Cyril
--~--~---------~--~----~------------~-------~--~----~
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
2006 Jun 24
10
Looking for Javascript IDE
Hi everyone!
I am looking for a good Javascript IDE. Complete code-completion, should
understand object oriented models and anonymous functions.
Any suggestions?
PS: Im on windows.
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2006 Jun 24
6
Few questions
I apologize if these questions are not relevant to Scriptaculous. I
just want to get a general idea if I can acomplish some or all of
these things with the framework, and then what (if any) I''ll need to
do outside just using javascript.
For now, I have 2 column layout. On the right I want a form palette
where form elements can be dragged to the left column. I have a form
inside the
2006 Sep 30
3
Builder.node, each() and Event.observe - Help!
Hi all
I am trying to get the following code working but somehow it doesn''t..
Please help me.
------------ snip ---------
Ajax.Request(''/json/images/''+query, {
onComplete:function(xmlhttp,json)
{
if(json.TotalResults != 0) {
json.Item.each(function(item)
{
$(''out'').appendChild(
2006 Jun 15
12
Why such bad performance with IE ?
Regarding DragDrop
I am wondering what the deal about Internet Explorer 6 is. My application is
near to final and now while testing browsers all but the IE6 are running as
supposed to. Any other browser is performing smooth movement while IE
compared provides a very bad expirience. I''ve seen some "tuning" infos on
this list but they are either outdated or not actually working
2006 Jun 16
4
can someone please show me how to feed a drop down ....
Hi there...
I have a html page that i have to use as a template page for an exucuting
CGI file. (search engine). that source can not be modified on that CGI.
The CGI file pulls in the template file and provides a way to format the
resulting CGI output. (the htm template have has CSS in it to formate the
CGI resulting page)
of cource with html being stateless .. i have no way to put a feed drop
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'',
2007 Sep 06
2
Wordpress Javascript Index Loop
I want to use javascript to display the categories that the post is
filed under when a icon/image is clicked. The list of categories
should expand at the bottom of the post under the icon(s).
This works great on the single post page, but the index (main) page
lists 10 posts, and it will only work on the first post. No matter
what post icon is clicked the first post expands. I think I
understand
2006 Jun 13
3
Weird flicker effect in IE6 (sortables)
Hello everyone
I have made some strange expirience yesterday. I have an unordered list with
sortable list items (basic). Within these are various contents (forms, divs,
more lists) etc..
Now on only some of them the whole page (all text) begins to flicker /
redrawn in Internet Explorer 6 if i pick up a dragable and move it above its
original position (like moving it above the ghost of the
2007 Mar 23
7
Lightbox-eske Dialogish Object
So, one of the things I''ve always wanted to do was expand upon the
simplicity of the Lightbox Gone Wild! object that the coders at
www.particletree.com put together months ago. I used it on an
application I wrote to organize my own picture albums on my localhost
web server, but I had to hack it apart to get it to do the things I
wanted it to do. I looked at the Prototype Window
2007 Mar 10
2
Managing PeriodicalExecuters in an Ajax app. How?
...on them. This sounds okay, but
it is obviously not working 100% of the time.
Any ideas how to manage this reliable?
Is there a global object (maybe propertie of the Window object) that
contains all active timers so i could clear them up on the source in
case stop() fails?
--
Regards, Kjell
www.m3nt0r.de
--~--~---------~--~----~------------~-------~--~----~
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 g...
2007 Mar 04
23
Sound support for script.aculo.us
Hi all,
I''ve added a new library called sound.js to script.aculo.us, which
allows for playing (mp3-based) sound effects. It works without using
Flash, by using IE''s internal sound playback mechanism (BGSOUND) and
falling back on using whatever plugin is used for audio/mpeg on other
browsers (in real world terms, this means QuickTime or a QuickTime-
compatible plugin).
2006 Aug 17
0
encode and umlauts - Form.serialize
Hi list
I have a problem with a script of mine. I have a simple textarea and i want
to send the contents to a php file for saving it by using ajax.request. Now
everything works fine, except if i enter umlauts. The script then fails and
the browser refreshes itself (simple submit due to script failure).
This is not really related to Script.aculo.us or Prototype but maybe some of
you can help me.
2006 Jun 24
0
Sortable with sortables? this.destroy not a function O_o
Hi all
I am creating sortable list with the builder. Now i want these sortables to
be a sortable aswell. So i wrap a div around them and run sortable create on
the main-container.
I have it like so (simplified):
var myLists = new Array(); // start a empty array for push
var mainDiv = ''main''; // some already present div to carry all stuff.
function newList() {
var sortlist