Folks,

I cannot find my node beyond the form.

Please look

    <form jwcid="[EMAIL PROTECTED]" listener="listener:onFormSubmit">
        <div jwcid="[EMAIL PROTECTED]" 
            block="ognl:components.autoPagingContent" />
        <div jwcid="[EMAIL PROTECTED]" 
            block="ognl:components.collectionContent" />
        <div jwcid="[EMAIL PROTECTED]" 
            block="ognl:components.autoPagingContent" />
    </form>

I am able to do the following:

    document.forms[0].galleryForm

I cannot do the following:

    document.forms[0].galleryForm.headerSelect


galleryForm does have 4 children and elements (one hidden)

So I can reference... the following:
    document.forms[0].galleryForm.children[0]


    document.forms[0].galleryForm.children[1]


    document.forms[0].galleryForm.children[2]


    document.forms[0].galleryForm.children[3]

Have the div elements gone pooof ! I cannot find them. Since they are Blocks 
does this render them transient?

basically all i want to do is ass a text node to one of the DIV's above like 
this...

            var divBlock = document.createElement("div");
            divBlock.appendChild(document.createTextNode("Loading..."));
            var container = 
                document.getElementById("${component.clientId}");
                container.addChild(divBlock);

Drilling into DOM nodes for tapestry is an arduous process. Has it 
re-fabricated the markup and truncated it? What can I do so I can 
programmatically get a handle on these DOM's that I cannot find.

If someone could shed some light here on what I am missing that would be great.

Best regards

Ken in nashua


_________________________________________________________________
Connect and share in new ways with Windows Live.
http://www.windowslive.com/connect.html?ocid=TXT_TAGLM_Wave2_newways_112007

Reply via email to