search for: eflem

Displaying 10 results from an estimated 10 matches for "eflem".

Did you mean: elem
2005 Jul 06
16
Autocompletion not working in Konqueror
I''ve just had a look again at the autocompletion demo that Thomas put up at http://script.aculo.us/demos/ajax/autocompleter Unfortunately, in Konqueror (3.4.1) it doesn''t work at all. Not even an error is triggered. It does work nicely in Firefox. How about Safari? I don''t have the time right now to track this down systematically (maybe latter), but just from
2005 Aug 05
4
Dev Tools
What tools does everyone use to develop? Are there any tools to see what is going to and coming back from and Ajax call that can be plugged into firefox? -- Eric Fleming efleming@gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20050805/55f7e02e/attachment.html
2005 Aug 21
3
Data binding
Hi, Is there any interest in data binding functions? I''ve got several functions that enable you to populate tables, select lists and forms etc using js arrays and objects. It could be useful to anyone using Ajax, computed javascript or any other mechanism to read data from a server separately from the HTML. Any interest? Joe.
2005 Aug 25
17
IE and the activeX security warning
I''ve been testing my page, which not only includes my new slider code but the drag and drop code as well. You can see it here: http://hoover.razorstream.com/preference.htm My issue is that in IE, I get the annoying security warning across the top saying ''IE has restricted this file from showing active content that could access your computer''. If I allow the
2005 Sep 13
6
flicker in IE with SlideDown/SlideUp
The flicker I am seeing in IE is really really bad with SlideDown/SlideUp. The element I am sliding is a div that contains a table. The tables are stacked on top of each other so that the presentation actually appears as a single table. When I SlideDown, the toggled element flashed into view then disappears before sliding down. On SlideUp it slides up then flashes into view for a split
2005 Aug 17
5
asynchronous Ajax.Updater
I had one point in my project where I needed a synchronous Ajax call; in other words, I wanted the Ajax.Updater call to not return until the content of my page had been updated. However, I found that if you call Ajax.Updaterwith the {asynchronous: false} option, the onComplete() function would never be called and your content would not be updated. Was this the intended behavior? I added the
2005 Aug 12
8
Sortable Tables
I''ve put together a little library to provide sortable tables. It is heavily copied from http://www.kryogenix.org/code/browser/sorttable/ (mentioned in the Wish List) but has been modified to match the same form as the prototype.js library and add some new features. I still need to clean up some of the comments, but everything is pretty much working at this point. I posted an
2005 Jul 31
0
Ajax.Updater / Effect.Fade Problems
...ust make the note fade using the Effect.Fade method, it goes away fine, as soon as it hits the Ajax.Updaterfunction, all the notes disapear from the list. I was able to fix the issue by setting the asynchronous option in the Ajax.Update method to false. Anybody had this problem? -- Eric Fleming efleming@gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20050728/f62496ef/attachment.html
2005 Aug 22
8
Observing changes to a text field
I''ve noticed that using several TimedObservers (prototype.js) on a page to watch for changes to text fields (haven''t tried forms) can have a non-negligible effect on the CPU cycles used by the browser process. Nothing dramatic, to be sure, but unnecessary. Autocompleter.Base (controls.js) follows a smarter strategy to watch for changes. Currently this functionality is tied
2005 Dec 24
8
Prototype OOP example
Hi, Here is what I want to do: Labour = Class.create(); Labour.prototype = { initialize:function(name){ this.name = name; } } What I want to do is create a class called "Worker" which will inherit from "Labour", and the signature of "initialize" is "function(name, position)". May I ask what should do? Thank you all very much for the