search for: blogometer

Displaying 14 results from an estimated 14 matches for "blogometer".

2005 Sep 27
8
prototype.js
Hi *, We don''t know if you guys are the right audience, but we got a problem with prototype.js we need to solve. Essentially, it is a compatibility bug with the IE. We wrote a component so it updates itself periodically using AJAX. we used the prototype.js to accomplish this (using the periodicalUpdater object). now the component works fine using firefox or opera, but NOT with IE. the
2005 Sep 21
2
Tutorials, Howtos
Are there any tutorials or howtos on scriptaculous or Prototype? -- Alan Gutierrez - alan@engrm.com - http://engrm.com/blogometer/index.html - http://engrm.com/blogometer/rss.2.0.xml
2005 Sep 21
2
Result Documents XML or JSON?
...e JSON, and XML. I can generate both pretty easily. What''s best practice for AJAX responses? Return scripts to be evaled by the Ajax control, or return XML documents and iterate them using XML DOM? Thanks. -- Alan Gutierrez - alan@engrm.com - http://engrm.com/blogometer/index.html - http://engrm.com/blogometer/rss.2.0.xml
2005 Sep 19
5
accept on Sortable
Hi all, I am working on a Google Suggest Like thing, where you can add / remove, drag n drop ... mini-apps, it is nearly done but I need some advices (here it is if you want to check it : http://dev.karibou.org/default/edit ). I am using Sortables, is it the best way to do it ? I needed to modify the Serialize function cause I didn''t like the way I had to id my elements. Sorry, the
2005 Sep 28
0
Prototype / script.aculo.us / XSLT 2.0
Here''s an blog on how I''m using Prototype and script.aculo.us... http://engrm.com/blogometer/2005/09/28/relay-and-javascript-generators/ If anyone is interested in generating views and models for script.aculo.us controllers in XSLT 2.0 please let me know. -- Alan Gutierrez - alan@engrm.com - http://engrm.com/blogometer/index.html - http://engrm.com/blogometer/rss.2.0....
2005 Sep 21
9
Ajax.Updater
Hi all, I was wondering if one could pull a completely separate web site into a div, e.g. <a href="#" onclick="new Ajax.Updater(''artifact'', ''http://www.vivisimo.com/'', {asynchronous:true, evalScripts:true, onLoading:function(request){Toggle.display(''message2body'')}}); return false;">&raquo;</a> it fails
2005 Oct 01
3
storing state in cookies using scriptaculous
Hi All, So I''m using scriptaculous in rails to allow opening and closing of messages in a threaded forum without the need for reloading the entire page. What I was wondering was if there was some way to store the state (which messages are open and which are closed) in a cookie or something, so that when the user does reload the page the messages won''t all be reset to their
2005 Sep 21
0
Other JavaScript Forums
Are their other forms for Prototype and script.aculo.us developers? Know I''ve asked before, but I''ll ask again. Make sure I''m not missing anything. Thanks. -- Alan Gutierrez - alan@engrm.com - http://engrm.com/blogometer/index.html - http://engrm.com/blogometer/rss.2.0.xml
2005 Sep 26
0
Expando? Bubble?
...easier to treat the document as a data structure then to mirror that structure in JavaScript. Did people discover that expandos and event bubbling were faulty for some reason? I''m wondering. It''s been a while. -- Alan Gutierrez - alan@engrm.com - http://engrm.com/blogometer/index.html - http://engrm.com/blogometer/rss.2.0.xml
2005 Sep 28
1
script.aculo.us Design Patterns
...if they were members the controller, rather than members of the target object. This creates a consistant environment across browers, and creates a meaningful this object that can maintain the state of the control. Correct? -- Alan Gutierrez - alan@engrm.com - http://engrm.com/blogometer/index.html - http://engrm.com/blogometer/rss.2.0.xml
2005 Oct 27
3
String.protoype.toQueryParams
Hi, I am trying to play with all the methods in the Array Object. Just wanted to check with you guys if this is the correct explanation of toQueryParams(). If yes, then I''ll add it to the documentation as well. Works for me (but I am not sure if it''s the correct way to use it). /* String.prototype.toQueryParams takes a query string, i.e, string with name value pairs
2005 Sep 19
9
Rails compatible JS datepicker -- beta
hi all, I''ve built a simple javascript datepicker for use with Rails. I''m sure others exist, but think this one is quite decent without being overengineered. http://projects.exactlyoneturtle.com/date_picker/ At present there''s no Rails HTML generator method for it; later I will package it in a script/generator, but for now it is quite easy to use with Rails and
2005 Oct 01
7
minimal browser requirements for scriptaculous
Hi, I noticed that the scriptaculous shopping cart demo doesn''t work in safari 1.03. I was wondering if there was documentation somewhere that would tell me what my minimal browser requirements were for running scriptaculous? I found this comparative analysis on the web: http://wiki.osafoundation.org/bin/view/Projects/AjaxLibraries but I think it might be a bit out of date. I did
2005 Oct 27
5
Problem passing event object
Hi all, I''m having a problem with an Ajax.Request. I can''t figure out how I can pass an event (an onclick on a checkbox) which causes the Ajax Request, to be recognized in an onSuccess function. Here''s my simplified code: var RequiredField = Class.create(); RequiredField.prototype = { initialize: function(chkbox) { this.chkbox = chkbox; this.chkbox.onclick =