vote up 0 vote down star

Mozilla is spitting out

DnD is not defined

errors on all of my rich:dragSupport and rich:dropSupport tags. When I check out the generated javascript the DnD object is where it should be and things look ok. Any ideas on why my DnD object is not defined? Has anyone come accross gotchas with using richfaces dnd?

We are using Richfaces 3.2.1 (drag and drop started in 3.0.0 acording to docs)

An example of how we are using this:

<a4j:outputPanel><rich:panel>
    <rich:dropSupport dropListener="#{myBean.dropAction}>
        <a4j:actionParam value="#{someData}" name="paramData" />
    </rich:dropSupport>

    <a4j:repeat value="#{myBean.list}" var="item">
        <a4j:outputPanel>
        <rich:panel>
                <rich:dragSupport dragValue="#{someOtherData}">
    	    <a4j:actionparam value="#{someOtherOtherData}" name="secondParam" />
    	    <h:outputText value="#{item.name}"></h:outputText>
    	</rich:dragSupport>
        </rich:panel>
    </a4j:outputPanel>
    </a4j:repeat>
</rich:panel></a4j:outputPanel>
flag

1 Answer

vote up 0 vote down check

My Problem: typo in naming of JBoss portlet deployment xml files

Other things to check (from week of research): Are you deploying the necessary richfaces jar files? Do you have other js scripts that are causing namespace issues like jQuerry or prototype?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.