I have the same problem. Did you solve by yourself?

This is my code an debugging,

DEBUG: widget ID collision on ID: resumenPartido111
DEBUG: widget ID collision on ID: detallePartido112


<wicket:panel>
    <table>
          <tr wicket:id="repeating">
            <td><div wicket:id="accordion">[accordion]</div></td>
          </tr>
    </table>
</wicket:panel>

public class SolapaPartidos extends Panel {

    private static final long serialVersionUID = 5452141466481309848L;

    public SolapaPartidos(String id) {
        super(id);
        RepeatingView repeating=new RepeatingView("repeating");
        add(repeating);

        WebMarkupContainer item = new WebMarkupContainer(
repeating.newChildId());
        repeating.add(item);
         item.add(new Accordion("accordion"));
    }
}


<wicket:panel>
    <div wicket:id="partido">
        <div wicket:id="resumenPartido">
            [resumenPartido]
        </div>
        <div wicket:id="detallePartido">
            [detallePartido]
        </div>
    </div>
</wicket:panel>


public class Accordion extends Panel {
    private static final long serialVersionUID = -3342221765791589494L;

    public Accordion(String id, InscripcionPartido inscripcion) {
        super(id);
        DojoAccordionContainer container = new
DojoAccordionContainer("partido");

        container.setHeight("200px");
        container.add(new DojoSimpleContainer("resumenPartido", "Resumen del
partido"));
        container.add(new DojoSimpleContainer("detallePartido", "Detalle del
partido"));
        add(container);
    }
}



On Wed, Jan 30, 2008 at 1:43 PM, Wicketter <[EMAIL PROTECTED]> wrote:

>
> There are errors on this page which displays split container example. Also
> copying the source code, doesn't do the same thing as example running on
> the
> site.
>
> Here are the errors displayed:
>
> DEBUG: widget ID collision on ID: tab11
> DEBUG: widget ID collision on ID: tab22
> DEBUG: widget ID collision on ID: tab33
> clear | close
> Wicket Ajax Debug Window (drag me here)
> WICKET AJAX DEBUG
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "panel" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "panel" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "panel" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "panel" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "child" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "child" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "extend" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "extend" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "simpledropdowndatepicker" in "
> dojo.widget"
> registered to namespace "dojo". Developers must specify correct namespaces
> for all non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "panel" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "panel" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "panel" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "panel" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "child" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "child" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: DEPRECATED: dojo.widget.Manager.getImplementationName Could not
> locate widget implementation for "extend" in "wicket.widget" registered to
> namespace "wicket". Developers must specify correct namespaces for all
> non-Dojo widgets -- will be removed in version: 0.5
> DEBUG: dojo.widget.Parse: error:Error: Could not locate widget
> implementation for "extend" in "wicket.widget" registered to namespace
> "wicket"
> DEBUG: widget ID collision on ID: date10
> DEBUG: widget ID collision on ID: date21
> DEBUG: widget ID collision on ID: date32
> DEBUG: widget ID collision on ID: date43
> --
> View this message in context:
> http://www.nabble.com/errors-on-the-WicketStuff-Dojo-split-container-example-tp15183543p15183543.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
Fernando Wermus.

Reply via email to