[Prototype-core] Re: Prototype without browser?

2010-04-22 Thread Matt Foster
I've used the Enumerable methods and the core stuff like Function.bind and Class.create in whatever ECMA flavor the Adobe programs use(Indesign Photoshop) so I'm sure it's possible to leverage some things from prototype in your program.

[Prototype-core] Re: Problem with getting my data

2008-04-30 Thread Matt Foster
I like the variable names, sometimes it is such a mess! The problem is that you aren't waiting for the reply, you're instantiating the object and then immediately calling what should be your call back to the request. You need to execute the request and then in your appendMessages method, which

[Prototype-core] Re: Prototype Pagination

2007-10-18 Thread Matt Foster
get tricky as the focus of the mouse determines which object will scroll with the mouse wheel. Cheers, Matt On Oct 17, 8:47 am, Mislav Marohnić [EMAIL PROTECTED] wrote: On 10/15/07, Matt Foster [EMAIL PROTECTED] wrote: I have developed a pretty smooth UI Control for handling

[Prototype-core] Prototype Pagination

2007-10-15 Thread Matt Foster
Greetings Everyone, I have developed a pretty smooth UI Control for handling client side pagination. It is composed of 3 classes that allow for maximum decoupling. In this manner the view is decoupled from the iteration control, such that the same iteration control can be used on any

[Prototype-core] Re: Event methods' bug in Internet Explorer

2007-10-09 Thread Matt Foster
You sure that will fail? I am pretty sure the static event methods should all work with a regular event object. Isn't it just for convenience, like the Element methods that they put the method in as a property just for the syntactic sweetness? Also I agree with Mislav, inline event handling is

[Prototype-core] Prototype DateChooser

2007-09-17 Thread Matt Foster
Hey Everyone, I had been looking for an implementation of a date chooser. Many were close but I was really looking for something more...declouped. So i ended up taking a new approach, maybe because im left handed. What I wanted to do was build up the functionality of a grid and then

[Prototype-core] Re: XML nodes and Element.readAttribute (IE bug)

2007-09-14 Thread Matt Foster
Wow I hate the attribute model, so broken heh. What is wrong with the native getAttribute method, is there anything different going on here? Cheers, Matt On Sep 13, 3:02 pm, Yanick [EMAIL PROTECTED] wrote: I don't know if anyone has encountered this problem before, but I was reading

[Prototype-core] Save State in ajax application

2007-09-06 Thread Matt Foster
Greetings Everyone, I had posted about a method for handling the back and forward buttons for ajax applications. I have completed a working prototype for the other half of the history coin, enabling the bookmark. The basic premise falls in line with many other approaches, stashing

[Prototype-core] Re: Fisheye control for prototype.

2007-08-20 Thread Matt Foster
on anything descending in the document. I'll put that into the entry as this is a concern. Cheers, Matt On Aug 20, 1:04 pm, John Barnette [EMAIL PROTECTED] wrote: On 8/20/07, Mislav Marohnić [EMAIL PROTECTED] wrote: On 8/20/07, Matt Foster [EMAIL PROTECTED] wrote: The animation

[Prototype-core] Re: browser and platform info?

2007-08-17 Thread Matt Foster
Prototype.Browser.IE and the others are booleans, not functions that return booleans. Cheers, Matt On Aug 7, 3:06 am, Lino Jan Telera [EMAIL PROTECTED] wrote: For browser u can write (only if you are using prototype 1.5.1) Prototype.Browser.IE (return true if you are using IE)