You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Fernando Wermus <fe...@gmail.com> on 2008/02/29 17:15:05 UTC

Re: errors on the WicketStuff Dojo split container example

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 <mo...@gmail.com> 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: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>


-- 
Fernando Wermus.

Re: errors on the WicketStuff Dojo split container example

Posted by Nino Saturnino Martinez Vazquez Wael <ni...@jayway.dk>.
Hi

I never get the response from Fernando, I asked for a snip of code.. It 
looked that his problem were something with YUI clashing, different 
versions between YUI and accordion panel..

jchappelle wrote:
> Did someone solve this? I am having the same issue. 
>
> Thanks,
>
> Josh
>
> Fernando Wermus-2 wrote:
>   
>> 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 <mo...@gmail.com>
>> 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: users-unsubscribe@wicket.apache.org
>>> For additional commands, e-mail: users-help@wicket.apache.org
>>>
>>>
>>>       
>> -- 
>> Fernando Wermus.
>>
>>
>>     
>
>   

-- 
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: errors on the WicketStuff Dojo split container example

Posted by jchappelle <jc...@4redi.com>.
Did someone solve this? I am having the same issue. 

Thanks,

Josh

Fernando Wermus-2 wrote:
> 
> 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 <mo...@gmail.com>
> 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: users-unsubscribe@wicket.apache.org
>> For additional commands, e-mail: users-help@wicket.apache.org
>>
>>
> 
> 
> -- 
> Fernando Wermus.
> 
> 

-- 
View this message in context: http://www.nabble.com/errors-on-the-WicketStuff-Dojo-split-container-example-tp15183543p19980261.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org