[mochikit] I found a Visual AJAX tool and library for AJAX Developers

2006-05-25 Thread AJAXFANS
Joyistar Releases a Visual AJAX tool and library for AJAX Developers Here is free trial. http://eng.joyistar.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this group, send email

[mochikit] Re: HTML and DOM

2006-05-25 Thread coredump
Yes, it worked like a charm for my br tags, but if I allow a hrefs... and b/b the thing start to get ugly. Mainly because br is a simple tag, but the other ones have opening and ending parts... Any other ideas? On how to spit DOM vrom HTML quickly? :P []s

[mochikit] Re: HTML and DOM

2006-05-25 Thread Zachery Bir
On May 25, 2006, at 8:00 AM, coredump wrote: Yes, it worked like a charm for my br tags, but if I allow a hrefs... and b/b the thing start to get ugly. Mainly because br is a simple tag, but the other ones have opening and ending parts... Any other ideas? On how to spit DOM vrom HTML

[mochikit] Re: HTML and DOM

2006-05-25 Thread coredump
Hmmm. I tried innerHTML before with no success, now I tried it again but using another object and it worked ok :) thanks :) []s --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this

[mochikit] Re: HTML and DOM

2006-05-25 Thread Bob Ippolito
On May 25, 2006, at 12:06 PM, Zachery Bir wrote: On May 25, 2006, at 8:00 AM, coredump wrote: Yes, it worked like a charm for my br tags, but if I allow a hrefs... and b/b the thing start to get ugly. Mainly because br is a simple tag, but the other ones have opening and ending parts...

[mochikit] Re: Help with Example...

2006-05-25 Thread drbigfresh
I thought there was some way to pass it to the library via the html page So, I guess I would like to maintain the same functionality, but be able to specify the data source somewhere on the html page... Is that possible? --~--~-~--~~~---~--~~ You received

[mochikit] Re: IDE friendly method declarations

2006-05-25 Thread Bob Ippolito
On May 24, 2006, at 7:33 PM, Melkor wrote: Hello, I've been using IntelliJ IDEA for development. They are adding support for JS editing, with refactoring and early warnings which its real nice. What I've found is that the way MochiKit exports functions to the global namespace makes

[mochikit] Re: Help with Example...

2006-05-25 Thread Arnar Birgisson
On 5/25/06, drbigfresh [EMAIL PROTECTED] wrote: I thought there was some way to pass it to the library via the html page So, I guess I would like to maintain the same functionality, but be able to specify the data source somewhere on the html page... Is that possible? Actually

[mochikit] Re: Help with Example...

2006-05-25 Thread Bob Ippolito
On May 25, 2006, at 2:58 PM, drbigfresh wrote: I thought there was some way to pass it to the library via the html page So, I guess I would like to maintain the same functionality, but be able to specify the data source somewhere on the html page... Is that possible? Of course,

[mochikit] Re: IDE friendly method declarations

2006-05-25 Thread Melkor
I meant it not only for the benefit of IntelliJ but for any IDE that wants to give us intellisense. As we won't get special support for MochiKit, maybe there's a more transparent way to expose function names so they can get picked up. The current way is dynamic and can't possibly be statically

[mochikit] Re: IDE friendly method declarations

2006-05-25 Thread Melkor
OK, thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this group, send email to mochikit@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more

[mochikit] DOM and TinyMCE

2006-05-25 Thread coredump
ERm... Anyone got lucky using TinyMCE on a swaped dom? I explain: Configured TinyMCE to do a late initialization because the textare doesn't exist onload of the page, the textarea is created by a swapDOM, and then after the swapDOM I start TInyMCE. Problem is that TinyMCE doesn't find the

[mochikit] Using Mochikit with my Classes - Looking for Beginner Documentation

2006-05-25 Thread Will
Hi, I've been using Mochikit for some time to do simple stuff, but I am now trying to work it into my prototypes (small p)/classes, but the I am having some trouble with what this references, and it also seems like there are a whole bunch of tools to make building classes easier, but I am

[mochikit] Re: DOM and TinyMCE

2006-05-25 Thread Bob Ippolito
On May 25, 2006, at 9:17 PM, coredump wrote: ERm... Anyone got lucky using TinyMCE on a swaped dom? I explain: Configured TinyMCE to do a late initialization because the textare doesn't exist onload of the page, the textarea is created by a swapDOM, and then after the swapDOM I start

[mochikit] Re: Using Mochikit with my Classes - Looking for Beginner Documentation

2006-05-25 Thread troels knak-nielsen
mochikit doesn't feature a class-emulation kit per se, as other frameworks does. personally i think this is a good thing. I use a variant of the technique described here: http://www.itsalleasy.com/2006/02/24/classjs-third-time-is-the-charm/ For some reading/discussion on the subject, I suggest

[mochikit] Re: Using Mochikit with my Classes - Looking for Beginner Documentation

2006-05-25 Thread Bob Ippolito
On May 25, 2006, at 9:33 PM, Will wrote: I've been using Mochikit for some time to do simple stuff, but I am now trying to work it into my prototypes (small p)/classes, but the I am having some trouble with what this references, and it also seems like there are a whole bunch of tools

[mochikit] Re: Using Mochikit with my Classes - Looking for Beginner Documentation

2006-05-25 Thread Will
Thanks for both of these posts. Off to read. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups MochiKit group. To post to this group, send email to mochikit@googlegroups.com To unsubscribe from this group, send email

[mochikit] Re: Using Mochikit with my Classes - Looking for Beginner Documentation

2006-05-25 Thread Will
Know what? I'm glad to say that after reading through the links, I think I am already pretty much up to speed on most things discussed. Some of the fancier construction techniques, those trying to address multiple inheritance were advanced. But I'm familiar with prototype object construction and

[mochikit] Re: Using Mochikit with my Classes - Looking for Beginner Documentation

2006-05-25 Thread Johan Sundström
I then tried: doSimpleXMLHttpRequest(pathtoxml).addCallback( MyA.cleanXML ); MyA.cleanXML won't carry MyA along as the this object. Try bind( MyA.cleanXML, MyA ) instead of plain MyA.cleanXML. (Untested; I hope I got the parameter order right there.) -- / Johan Sundström,

[mochikit] storing info associated with a deferred

2006-05-25 Thread jvanasco
is there any way, or an accepted way, to store info associated with a deferred to be used in the callback? to better explain this: function subscribe( id ) { var d= loadJSONDoc( 'subscribe/'+id ); d.addCallback( this._subscribe_ok ); d.addErrback( this._subscribe_fail ); } a