[mochikit] Re: Problems with appendChildNodes?

2008-11-26 Thread Per Cederberg
Confirmed. I created a new ticket for this: http://trac.mochikit.com/ticket/328 I'll fix this one too in 1.4.2, which should be ready this week. Cheers, /Per On Wed, Nov 26, 2008 at 12:12 PM, Bob Ippolito <[EMAIL PROTECTED]> wrote: > > It looks like you also need Iter.js after Base.js and

[mochikit] Re: Problems with appendChildNodes?

2008-11-26 Thread Bjoern
Fantastic, thanks! It works now. --~--~-~--~~~---~--~~ 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 PR

[mochikit] Re: Problems with appendChildNodes?

2008-11-26 Thread Bob Ippolito
It looks like you also need Iter.js after Base.js and before DOM.js in order for that to work properly. Not entirely sure why without looking deeper into it, but I think that's a bug. On Wed, Nov 26, 2008 at 2:31 AM, Bjoern <[EMAIL PROTECTED]> wrote: > > Thanks! This fails for me, using Firefox 3

[mochikit] Re: Problems with appendChildNodes?

2008-11-26 Thread Bjoern
Thanks! This fails for me, using Firefox 3.0.4 on Ubuntu 8.10: http://www.w3.org/1999/xhtml"; lang="de" xml:lang="de"> Mochitest function init(){ appendChildNodes("test", SPAN({})); } addLoadEvent(init); Mochikit Test Random text

[mochikit] Re: Problems with appendChildNodes?

2008-11-26 Thread Bob Ippolito
Are you adding SPAN({}) to a string or something? appendChildNodes("idOfADiv", SPAN({})) should insert an empty SPAN, but appendChildNodes("idOfADiv", SPAN({}) + "") might have the behavior that you're describing. You want to use commas, not addition to add multiple nodes, e.g. appendChildNodes("i

[mochikit] Re: Problems with appendChildNodes?

2008-11-26 Thread Yoann Aubineau
It seems right to me. Could you provide us with a (non)-working example ? 2008/11/25 Bjoern <[EMAIL PROTECTED]>: > > Hello, > > I am new to MochiKit and couldn't get appendChildNodes to work > properly. As an example, I tried > > appendChildNodes($("idOfADiv"), SPAN({})); > > but on the website th