Re: wicket-menu and AjaxLink

2015-06-16 Thread Martin Grigorov
On Tue, Jun 16, 2015 at 12:48 PM,  wrote:

> Il 2015-06-14 21:47 Martin Grigorov ha scritto:
>
>> Hi,
>>
>> Consult with the sources and the demo application -
>> https://github.com/cooldatasoft/wicket-menu ;-)
>>
>
> Thanks, source code is not the most beautiful documentation you can think
> of, but it is better than nothing. The demo app does not use that
> constructor, so I had to resort to wicket-menu source code interpretation.
> The wicket:id to use is "menuLink" and you don't need to add it to your
> html, the tag is provided by wicket-menu.
>
> Now there's another problem, the onClick() method of my AjaxFallbackLink
> instance never gets called, but I suppose I have to look at the wicket-menu
> source code again to understand why...


Right!
Or create an issue at the project and ask...

Martin Grigorov
Freelancer. Available for hire!
Wicket Training and Consulting
https://twitter.com/mtgrigorov



>
>
>
>> Martin Grigorov
>> Wicket Training and Consulting
>> https://twitter.com/mtgrigorov
>>
>> On Sun, Jun 14, 2015 at 5:13 PM,  wrote:
>>
>>  Hello
>>>
>>> I'm trying to use the com.cooldatasoft.common.MenuItem constructor that
>>> accepts the id string and a "Link ajaxLink" argument. Let alone the
>>> fact I don't udenrstand why that constructor allows for a normal Link if
>>> it
>>> expects it to be a AjaxLink. The real problem is that I dont know how to
>>> create the AjaxLink, because I should tell the AjaxLink constructor which
>>> wicket:id it should bind to, but that wicket:id is unknown to me: it is
>>> being generated (I assume) by wicket-menu classes at runtime.
>>>
>>> My code is:
>>>
>>> new MenuItem("MenuText", new AjaxLink("")
>>> {
>>>   @Override
>>>   public void onClick(AjaxRequestTarget target)
>>>   {
>>>   }
>>> });
>>>
>>> and I need to put the correct MenuItem wicket:id in place of the question
>>> marks.
>>>
>>> Any help appreciated, thanks in advace.
>>>
>>> Lucio.
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: wicket-menu and AjaxLink

2015-06-16 Thread lucio

Il 2015-06-14 21:47 Martin Grigorov ha scritto:

Hi,

Consult with the sources and the demo application -
https://github.com/cooldatasoft/wicket-menu ;-)


Thanks, source code is not the most beautiful documentation you can 
think of, but it is better than nothing. The demo app does not use that 
constructor, so I had to resort to wicket-menu source code 
interpretation.
The wicket:id to use is "menuLink" and you don't need to add it to your 
html, the tag is provided by wicket-menu.


Now there's another problem, the onClick() method of my AjaxFallbackLink 
instance never gets called, but I suppose I have to look at the 
wicket-menu source code again to understand why...




Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Sun, Jun 14, 2015 at 5:13 PM,  wrote:


Hello

I'm trying to use the com.cooldatasoft.common.MenuItem constructor 
that
accepts the id string and a "Link ajaxLink" argument. Let alone 
the
fact I don't udenrstand why that constructor allows for a normal Link 
if it
expects it to be a AjaxLink. The real problem is that I dont know how 
to
create the AjaxLink, because I should tell the AjaxLink constructor 
which
wicket:id it should bind to, but that wicket:id is unknown to me: it 
is

being generated (I assume) by wicket-menu classes at runtime.

My code is:

new MenuItem("MenuText", new AjaxLink("")
{
  @Override
  public void onClick(AjaxRequestTarget target)
  {
  }
});

and I need to put the correct MenuItem wicket:id in place of the 
question

marks.

Any help appreciated, thanks in advace.

Lucio.

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





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



Re: wicket-menu and AjaxLink

2015-06-14 Thread Martin Grigorov
Hi,

Consult with the sources and the demo application -
https://github.com/cooldatasoft/wicket-menu ;-)

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Sun, Jun 14, 2015 at 5:13 PM,  wrote:

> Hello
>
> I'm trying to use the com.cooldatasoft.common.MenuItem constructor that
> accepts the id string and a "Link ajaxLink" argument. Let alone the
> fact I don't udenrstand why that constructor allows for a normal Link if it
> expects it to be a AjaxLink. The real problem is that I dont know how to
> create the AjaxLink, because I should tell the AjaxLink constructor which
> wicket:id it should bind to, but that wicket:id is unknown to me: it is
> being generated (I assume) by wicket-menu classes at runtime.
>
> My code is:
>
> new MenuItem("MenuText", new AjaxLink("")
> {
>   @Override
>   public void onClick(AjaxRequestTarget target)
>   {
>   }
> });
>
> and I need to put the correct MenuItem wicket:id in place of the question
> marks.
>
> Any help appreciated, thanks in advace.
>
> Lucio.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


wicket-menu and AjaxLink

2015-06-14 Thread lucio

Hello

I'm trying to use the com.cooldatasoft.common.MenuItem constructor that 
accepts the id string and a "Link ajaxLink" argument. Let alone 
the fact I don't udenrstand why that constructor allows for a normal 
Link if it expects it to be a AjaxLink. The real problem is that I dont 
know how to create the AjaxLink, because I should tell the AjaxLink 
constructor which wicket:id it should bind to, but that wicket:id is 
unknown to me: it is being generated (I assume) by wicket-menu classes 
at runtime.


My code is:

new MenuItem("MenuText", new AjaxLink("")
{
  @Override
  public void onClick(AjaxRequestTarget target)
  {
  }
});

and I need to put the correct MenuItem wicket:id in place of the 
question marks.


Any help appreciated, thanks in advace.

Lucio.

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



Re: wicket menu

2009-09-22 Thread Ernesto Reinaldo Barreiro
 that would show when hovering over
> > > Two-2-1.
> > > > > > >
> > > > > > > For IE6, I can fix by adding another layer in the CSS - see
> "Fix
> > > IE6
> > > > > sub
> > > > > > > menu list".  The use of the "_" in front of the "left:" is only
> > > > visible
> > > > > > for
> > > > > > > IE6
> > > > > > >
> > > > > > >
> > > > > > > /*All subsequent sub menu levels vertical offset after 1st
> level
> > > sub
> > > > > menu
> > > > > > > */
> > > > > > > .jqueryslidemenu ul li ul li ul{
> > > > > > >  top: 0;
> > > > > > > }
> > > > > > >
> > > > > > > /*Fix IE6 sub menu list   */
> > > > > > > .jqueryslidemenu ul li ul li ul li{
> > > > > > > _left: -4px; /* IE6 only */
> > > > > > > }
> > > > > > >
> > > > > > >
> > > > > > > On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
> > > > > > > reier...@gmail.com> wrote:
> > > > > > >
> > > > > > > > Hi Joeri,
> > > > > > > > Good to hear that it worked for you! In the mean time I did
> > some
> > > > > > clean-up
> > > > > > > > to
> > > > > > > > make the component more configurable... If you get the chance
> > to
> > > > > > improve
> > > > > > > > it,
> > > > > > > > and if you are allowed to do so, it would nice if you also
> > share
> > > > the
> > > > > > > > modifications... So, that others can benefit too.
> > > > > > > >
> > > > > > > > I also have had problems with SVN and eclipse (I guess
> because
> > a
> > > > > stupid
> > > > > > > > proxy in between) but after some struggle I manage to get it
> > > > > > working
> > > > > > > >
> > > > > > > > Best,
> > > > > > > >
> > > > > > > > Ernesto
> > > > > > > >
> > > > > > > > On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ) <
> > > > > > joeri.boyd...@oz.be
> > > > > > > > >wrote:
> > > > > > > >
> > > > > > > > > Hi Ernesto,
> > > > > > > > >
> > > > > > > > > I downloaded your files and it's working fine!  It's indeed
> > > very
> > > > > easy
> > > > > > > to
> > > > > > > > > create such a menu if the javascript exists !
> > > > > > > > >
> > > > > > > > > I'll have a look how we can integrate it in our new
> project!
> > > > > > > > >
> > > > > > > > > Thanks
> > > > > > > > > Joeri
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Ps: i had problems with the google svn... maybe it's my
> > eclipse
> > > > > > > settings
> > > > > > > > > but I downloaded the files manually..
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Oorspronkelijk bericht-
> > > > > > > > > Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> > > > > > > > > Verzonden: maandag 21 september 2009 15:08
> > > > > > > > > Aan: users@wicket.apache.org
> > > > > > > > > Onderwerp: Re: wicket menu
> > > > > > > > >
> > > > > > > > > Hi Joeri,
> > > > > > > > > I just implemented the menu you mentioned
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
> > > > > > > > > _menu_2/
> > > > > > > > >
> > > > > > > > > in here
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > > > > > > > /com/antilia/web/dynamicdrive
> > > > > > > > >
> > > > > > > > > If you want to give it a try... get those sources on that
> > > package
> > > > > and
> > > > > > > > > mount
> > > > > > > > > the test page
> > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > > >
> > >
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > > > > > > > /com/antilia/web/dynamicdrive/test/TestMenu.java
> > > > > > > > >
> > > > > > > > > On you application... Feel free to modify the code as you
> > > need...
> > > > > > > > >
> > > > > > > > > It is so easy to create components in Wicket (moreover,
> when
> > > > > someone
> > > > > > > > > else
> > > > > > > > > has done the dirty JavaScript work;-)
> > > > > > > > >
> > > > > > > > > Best,
> > > > > > > > >
> > > > > > > > > Ernesto
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > <
> > > > > > >
> > > > >
> > >
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
> > > > > > > > > c/com/antilia/web/dynamicdrive>
> > > > > > > > >
> > > > > > > > > On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
> > > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Hi,
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > We are changing from Struts to Wicket, in our Struts
> > > > application
> > > > > we
> > > > > > > > > used
> > > > > > > > > > Struts-Menu.  Now I've searched the wicket mailing list
> but
> > I
> > > > > > > couldn't
> > > > > > > > > > find any descent menu.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Is there a Wicket menu available, where can I find it ?
> Or
> > > > should
> > > > > I
> > > > > > > > > > write my own?
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > I've seen some code based on YUI, but I can't find that
> > > anymore
> > > > > in
> > > > > > > the
> > > > > > > > > > svn.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Joeri
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > >
> -
> > > > > > > > > To unsubscribe, e-mail:
> users-unsubscr...@wicket.apache.org
> > > > > > > > > For additional commands, e-mail:
> > users-h...@wicket.apache.org
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: wicket menu

2009-09-22 Thread T Ames
gt; IE6
>> > > > sub
>> > > > > > menu list".  The use of the "_" in front of the "left:" is only
>> > > visible
>> > > > > for
>> > > > > > IE6
>> > > > > >
>> > > > > >
>> > > > > > /*All subsequent sub menu levels vertical offset after 1st level
>> > sub
>> > > > menu
>> > > > > > */
>> > > > > > .jqueryslidemenu ul li ul li ul{
>> > > > > >  top: 0;
>> > > > > > }
>> > > > > >
>> > > > > > /*Fix IE6 sub menu list   */
>> > > > > > .jqueryslidemenu ul li ul li ul li{
>> > > > > > _left: -4px; /* IE6 only */
>> > > > > > }
>> > > > > >
>> > > > > >
>> > > > > > On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
>> > > > > > reier...@gmail.com> wrote:
>> > > > > >
>> > > > > > > Hi Joeri,
>> > > > > > > Good to hear that it worked for you! In the mean time I did
>> some
>> > > > > clean-up
>> > > > > > > to
>> > > > > > > make the component more configurable... If you get the chance
>> to
>> > > > > improve
>> > > > > > > it,
>> > > > > > > and if you are allowed to do so, it would nice if you also
>> share
>> > > the
>> > > > > > > modifications... So, that others can benefit too.
>> > > > > > >
>> > > > > > > I also have had problems with SVN and eclipse (I guess because
>> a
>> > > > stupid
>> > > > > > > proxy in between) but after some struggle I manage to get it
>> > > > > working
>> > > > > > >
>> > > > > > > Best,
>> > > > > > >
>> > > > > > > Ernesto
>> > > > > > >
>> > > > > > > On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ) <
>> > > > > joeri.boyd...@oz.be
>> > > > > > > >wrote:
>> > > > > > >
>> > > > > > > > Hi Ernesto,
>> > > > > > > >
>> > > > > > > > I downloaded your files and it's working fine!  It's indeed
>> > very
>> > > > easy
>> > > > > > to
>> > > > > > > > create such a menu if the javascript exists !
>> > > > > > > >
>> > > > > > > > I'll have a look how we can integrate it in our new project!
>> > > > > > > >
>> > > > > > > > Thanks
>> > > > > > > > Joeri
>> > > > > > > >
>> > > > > > > >
>> > > > > > > > Ps: i had problems with the google svn... maybe it's my
>> eclipse
>> > > > > > settings
>> > > > > > > > but I downloaded the files manually..
>> > > > > > > >
>> > > > > > > >
>> > > > > > > > -Oorspronkelijk bericht-
>> > > > > > > > Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
>> > > > > > > > Verzonden: maandag 21 september 2009 15:08
>> > > > > > > > Aan: users@wicket.apache.org
>> > > > > > > > Onderwerp: Re: wicket menu
>> > > > > > > >
>> > > > > > > > Hi Joeri,
>> > > > > > > > I just implemented the menu you mentioned
>> > > > > > > >
>> > > > > > > >
>> > > > > >
>> > > >
>> >
>> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
>> > > > > > > > _menu_2/
>> > > > > > > >
>> > > > > > > > in here
>> > > > > > > >
>> > > > > > > >
>> > > > > >
>> > > >
>> >
>> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
>> > > > > > > > /com/antilia/web/dynamicdrive
>> > > > > > > >
>> > > > > > > > If you want to give it a try... get those sources on that
>> > package
>> > > > and
>> > > > > > > > mount
>> > > > > > > > the test page
>> > > > > > > >
>> > > > > > > >
>> > > > > >
>> > > >
>> >
>> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
>> > > > > > > > /com/antilia/web/dynamicdrive/test/TestMenu.java
>> > > > > > > >
>> > > > > > > > On you application... Feel free to modify the code as you
>> > need...
>> > > > > > > >
>> > > > > > > > It is so easy to create components in Wicket (moreover, when
>> > > > someone
>> > > > > > > > else
>> > > > > > > > has done the dirty JavaScript work;-)
>> > > > > > > >
>> > > > > > > > Best,
>> > > > > > > >
>> > > > > > > > Ernesto
>> > > > > > > >
>> > > > > > > >
>> > > > > > > > <
>> > > > > >
>> > > >
>> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
>> > > > > > > > c/com/antilia/web/dynamicdrive>
>> > > > > > > >
>> > > > > > > > On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
>> > > > > > > > wrote:
>> > > > > > > >
>> > > > > > > > > Hi,
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > > We are changing from Struts to Wicket, in our Struts
>> > > application
>> > > > we
>> > > > > > > > used
>> > > > > > > > > Struts-Menu.  Now I've searched the wicket mailing list
>> but I
>> > > > > > couldn't
>> > > > > > > > > find any descent menu.
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > > Is there a Wicket menu available, where can I find it ? Or
>> > > should
>> > > > I
>> > > > > > > > > write my own?
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > > I've seen some code based on YUI, but I can't find that
>> > anymore
>> > > > in
>> > > > > > the
>> > > > > > > > > svn.
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > > > Joeri
>> > > > > > > > >
>> > > > > > > > >
>> > > > > > > >
>> > > > > > > >
>> > > >
>> -
>> > > > > > > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> > > > > > > > For additional commands, e-mail:
>> users-h...@wicket.apache.org
>> > > > > > > >
>> > > > > > > >
>> > > > > > >
>> > > > > >
>> > > > >
>> > > >
>> > >
>> >
>>
>
>


Re: wicket menu

2009-09-22 Thread T Ames
jqueryslidemenu ul li ul li ul li{
> > > > > > _left: -4px; /* IE6 only */
> > > > > > }
> > > > > >
> > > > > >
> > > > > > On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
> > > > > > reier...@gmail.com> wrote:
> > > > > >
> > > > > > > Hi Joeri,
> > > > > > > Good to hear that it worked for you! In the mean time I did
> some
> > > > > clean-up
> > > > > > > to
> > > > > > > make the component more configurable... If you get the chance
> to
> > > > > improve
> > > > > > > it,
> > > > > > > and if you are allowed to do so, it would nice if you also
> share
> > > the
> > > > > > > modifications... So, that others can benefit too.
> > > > > > >
> > > > > > > I also have had problems with SVN and eclipse (I guess because
> a
> > > > stupid
> > > > > > > proxy in between) but after some struggle I manage to get it
> > > > > working
> > > > > > >
> > > > > > > Best,
> > > > > > >
> > > > > > > Ernesto
> > > > > > >
> > > > > > > On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ) <
> > > > > joeri.boyd...@oz.be
> > > > > > > >wrote:
> > > > > > >
> > > > > > > > Hi Ernesto,
> > > > > > > >
> > > > > > > > I downloaded your files and it's working fine!  It's indeed
> > very
> > > > easy
> > > > > > to
> > > > > > > > create such a menu if the javascript exists !
> > > > > > > >
> > > > > > > > I'll have a look how we can integrate it in our new project!
> > > > > > > >
> > > > > > > > Thanks
> > > > > > > > Joeri
> > > > > > > >
> > > > > > > >
> > > > > > > > Ps: i had problems with the google svn... maybe it's my
> eclipse
> > > > > > settings
> > > > > > > > but I downloaded the files manually..
> > > > > > > >
> > > > > > > >
> > > > > > > > -Oorspronkelijk bericht-
> > > > > > > > Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> > > > > > > > Verzonden: maandag 21 september 2009 15:08
> > > > > > > > Aan: users@wicket.apache.org
> > > > > > > > Onderwerp: Re: wicket menu
> > > > > > > >
> > > > > > > > Hi Joeri,
> > > > > > > > I just implemented the menu you mentioned
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
> > > > > > > > _menu_2/
> > > > > > > >
> > > > > > > > in here
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > > > > > > /com/antilia/web/dynamicdrive
> > > > > > > >
> > > > > > > > If you want to give it a try... get those sources on that
> > package
> > > > and
> > > > > > > > mount
> > > > > > > > the test page
> > > > > > > >
> > > > > > > >
> > > > > >
> > > >
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > > > > > > /com/antilia/web/dynamicdrive/test/TestMenu.java
> > > > > > > >
> > > > > > > > On you application... Feel free to modify the code as you
> > need...
> > > > > > > >
> > > > > > > > It is so easy to create components in Wicket (moreover, when
> > > > someone
> > > > > > > > else
> > > > > > > > has done the dirty JavaScript work;-)
> > > > > > > >
> > > > > > > > Best,
> > > > > > > >
> > > > > > > > Ernesto
> > > > > > > >
> > > > > > > >
> > > > > > > > <
> > > > > >
> > > >
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
> > > > > > > > c/com/antilia/web/dynamicdrive>
> > > > > > > >
> > > > > > > > On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > > > Hi,
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > We are changing from Struts to Wicket, in our Struts
> > > application
> > > > we
> > > > > > > > used
> > > > > > > > > Struts-Menu.  Now I've searched the wicket mailing list but
> I
> > > > > > couldn't
> > > > > > > > > find any descent menu.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Is there a Wicket menu available, where can I find it ? Or
> > > should
> > > > I
> > > > > > > > > write my own?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I've seen some code based on YUI, but I can't find that
> > anymore
> > > > in
> > > > > > the
> > > > > > > > > svn.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Joeri
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > -
> > > > > > > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > > > > > > For additional commands, e-mail:
> users-h...@wicket.apache.org
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: wicket menu

2009-09-22 Thread Ernesto Reinaldo Barreiro
Then, I don't know what's the problem As, said I can't see this
happening on my IE6...
Another thing we could try is making a static page using jquery-1.3.2.min.js
and see if this is the issue...  so that, we are sure it is not "Wicket"
related.
Best,

Ernesto

On Tue, Sep 22, 2009 at 2:49 PM, T Ames  wrote:

> Yes, I did try the holly hack with a wicket:head and tried inserting the
> html .jquerycssmenu{height: 1%;}  directly into the css.  Neither made any
> difference.
>
> I also noticed that they were using an older version of jquery 1.2.6
> although I am not sure that would matter.
>
>
>
> On Tue, Sep 22, 2009 at 3:26 AM, Ernesto Reinaldo Barreiro <
> reier...@gmail.com> wrote:
>
> > Hi,
> > The only difference I see between their page and TestMenu page is
> >
> > 
> >
> > So, I just added
> > 
> > 
> > 
> > 
> > 
> >
> > to TestMenu page Can you check, please, if that fixes the problem?
> >
> > Best,
> >
> > Ernesto
> >
> > On Mon, Sep 21, 2009 at 5:41 PM, T Ames  wrote:
> >
> > > Hmmm.   The demo version on the dynamicdrive site works ok in my IE6.
> > >
> > >
> > >
> > > On Mon, Sep 21, 2009 at 11:10 AM, Ernesto Reinaldo Barreiro <
> > > reier...@gmail.com> wrote:
> > >
> > > > Thanks for the feedback!
> > > > Just one question... I can't see the problems you are mentioning on
> my
> > > > (MultipleIEs) IE6. On the other hand if I add the lines you mention
> > then
> > > I
> > > > get those sub-menus displaced to the left... 4 pixels. So, it might
> be
> > > that
> > > > this is somethings that doesn't show up on my "simulated" IE6? So, I
> > > first
> > > > committed the changes you proposed but later I rolled them back... as
> I
> > > > can't see the problems myself.
> > > >
> > > > Maybe we should report this in here
> > > >
> > > >
> > > >
> > >
> >
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/
> > > >
> > > > As I'm just building a wrapper for what they have done
> > > >
> > > > Best,
> > > >
> > > > Ernesto
> > > >
> > > > On Mon, Sep 21, 2009 at 4:32 PM, T Ames  wrote:
> > > >
> > > > > I just downloaded and tried.
> > > > >
> > > > > Works good in FF 3.0.14
> > > > >
> > > > > If you are using IE6, you will get a 4 pixel space on a secondary
> > list.
> > > > > This
> > > > > causes issues when you slide the mouse in this tiny space. In the
> > Test
> > > > > example, this is the list that would show when hovering over
> Two-2-1.
> > > > >
> > > > > For IE6, I can fix by adding another layer in the CSS - see "Fix
> IE6
> > > sub
> > > > > menu list".  The use of the "_" in front of the "left:" is only
> > visible
> > > > for
> > > > > IE6
> > > > >
> > > > >
> > > > > /*All subsequent sub menu levels vertical offset after 1st level
> sub
> > > menu
> > > > > */
> > > > > .jqueryslidemenu ul li ul li ul{
> > > > >  top: 0;
> > > > > }
> > > > >
> > > > > /*Fix IE6 sub menu list   */
> > > > > .jqueryslidemenu ul li ul li ul li{
> > > > > _left: -4px; /* IE6 only */
> > > > > }
> > > > >
> > > > >
> > > > > On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
> > > > > reier...@gmail.com> wrote:
> > > > >
> > > > > > Hi Joeri,
> > > > > > Good to hear that it worked for you! In the mean time I did some
> > > > clean-up
> > > > > > to
> > > > > > make the component more configurable... If you get the chance to
> > > > improve
> > > > > > it,
> > > > > > and if you are allowed to do so, it would nice if you also share
> > the
> > > > > > modifications... So, that others can benefit too.
> > > > > >
> > > > > > I also have had problems with SVN and eclipse (I guess because a
> > > stupid
> > > > > > proxy in between)

Re: wicket menu

2009-09-22 Thread T Ames
Yes, I did try the holly hack with a wicket:head and tried inserting the
html .jquerycssmenu{height: 1%;}  directly into the css.  Neither made any
difference.

I also noticed that they were using an older version of jquery 1.2.6
although I am not sure that would matter.



On Tue, Sep 22, 2009 at 3:26 AM, Ernesto Reinaldo Barreiro <
reier...@gmail.com> wrote:

> Hi,
> The only difference I see between their page and TestMenu page is
>
> 
>
> So, I just added
> 
> 
> 
> 
> 
>
> to TestMenu page Can you check, please, if that fixes the problem?
>
> Best,
>
> Ernesto
>
> On Mon, Sep 21, 2009 at 5:41 PM, T Ames  wrote:
>
> > Hmmm.   The demo version on the dynamicdrive site works ok in my IE6.
> >
> >
> >
> > On Mon, Sep 21, 2009 at 11:10 AM, Ernesto Reinaldo Barreiro <
> > reier...@gmail.com> wrote:
> >
> > > Thanks for the feedback!
> > > Just one question... I can't see the problems you are mentioning on my
> > > (MultipleIEs) IE6. On the other hand if I add the lines you mention
> then
> > I
> > > get those sub-menus displaced to the left... 4 pixels. So, it might be
> > that
> > > this is somethings that doesn't show up on my "simulated" IE6? So, I
> > first
> > > committed the changes you proposed but later I rolled them back... as I
> > > can't see the problems myself.
> > >
> > > Maybe we should report this in here
> > >
> > >
> > >
> >
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/
> > >
> > > As I'm just building a wrapper for what they have done
> > >
> > > Best,
> > >
> > > Ernesto
> > >
> > > On Mon, Sep 21, 2009 at 4:32 PM, T Ames  wrote:
> > >
> > > > I just downloaded and tried.
> > > >
> > > > Works good in FF 3.0.14
> > > >
> > > > If you are using IE6, you will get a 4 pixel space on a secondary
> list.
> > > > This
> > > > causes issues when you slide the mouse in this tiny space. In the
> Test
> > > > example, this is the list that would show when hovering over Two-2-1.
> > > >
> > > > For IE6, I can fix by adding another layer in the CSS - see "Fix IE6
> > sub
> > > > menu list".  The use of the "_" in front of the "left:" is only
> visible
> > > for
> > > > IE6
> > > >
> > > >
> > > > /*All subsequent sub menu levels vertical offset after 1st level sub
> > menu
> > > > */
> > > > .jqueryslidemenu ul li ul li ul{
> > > >  top: 0;
> > > > }
> > > >
> > > > /*Fix IE6 sub menu list   */
> > > > .jqueryslidemenu ul li ul li ul li{
> > > > _left: -4px; /* IE6 only */
> > > > }
> > > >
> > > >
> > > > On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
> > > > reier...@gmail.com> wrote:
> > > >
> > > > > Hi Joeri,
> > > > > Good to hear that it worked for you! In the mean time I did some
> > > clean-up
> > > > > to
> > > > > make the component more configurable... If you get the chance to
> > > improve
> > > > > it,
> > > > > and if you are allowed to do so, it would nice if you also share
> the
> > > > > modifications... So, that others can benefit too.
> > > > >
> > > > > I also have had problems with SVN and eclipse (I guess because a
> > stupid
> > > > > proxy in between) but after some struggle I manage to get it
> > > working
> > > > >
> > > > > Best,
> > > > >
> > > > > Ernesto
> > > > >
> > > > > On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ) <
> > > joeri.boyd...@oz.be
> > > > > >wrote:
> > > > >
> > > > > > Hi Ernesto,
> > > > > >
> > > > > > I downloaded your files and it's working fine!  It's indeed very
> > easy
> > > > to
> > > > > > create such a menu if the javascript exists !
> > > > > >
> > > > > > I'll have a look how we can integrate it in our new project!
> > > > > >
> > > > > > Thanks
> > > > > > Joeri
> > > > > >
> &

Re: wicket menu

2009-09-22 Thread Ernesto Reinaldo Barreiro
Hi,
The only difference I see between their page and TestMenu page is



So, I just added






to TestMenu page Can you check, please, if that fixes the problem?

Best,

Ernesto

On Mon, Sep 21, 2009 at 5:41 PM, T Ames  wrote:

> Hmmm.   The demo version on the dynamicdrive site works ok in my IE6.
>
>
>
> On Mon, Sep 21, 2009 at 11:10 AM, Ernesto Reinaldo Barreiro <
> reier...@gmail.com> wrote:
>
> > Thanks for the feedback!
> > Just one question... I can't see the problems you are mentioning on my
> > (MultipleIEs) IE6. On the other hand if I add the lines you mention then
> I
> > get those sub-menus displaced to the left... 4 pixels. So, it might be
> that
> > this is somethings that doesn't show up on my "simulated" IE6? So, I
> first
> > committed the changes you proposed but later I rolled them back... as I
> > can't see the problems myself.
> >
> > Maybe we should report this in here
> >
> >
> >
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/
> >
> > As I'm just building a wrapper for what they have done
> >
> > Best,
> >
> > Ernesto
> >
> > On Mon, Sep 21, 2009 at 4:32 PM, T Ames  wrote:
> >
> > > I just downloaded and tried.
> > >
> > > Works good in FF 3.0.14
> > >
> > > If you are using IE6, you will get a 4 pixel space on a secondary list.
> > > This
> > > causes issues when you slide the mouse in this tiny space. In the Test
> > > example, this is the list that would show when hovering over Two-2-1.
> > >
> > > For IE6, I can fix by adding another layer in the CSS - see "Fix IE6
> sub
> > > menu list".  The use of the "_" in front of the "left:" is only visible
> > for
> > > IE6
> > >
> > >
> > > /*All subsequent sub menu levels vertical offset after 1st level sub
> menu
> > > */
> > > .jqueryslidemenu ul li ul li ul{
> > >  top: 0;
> > > }
> > >
> > > /*Fix IE6 sub menu list   */
> > > .jqueryslidemenu ul li ul li ul li{
> > > _left: -4px; /* IE6 only */
> > > }
> > >
> > >
> > > On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
> > > reier...@gmail.com> wrote:
> > >
> > > > Hi Joeri,
> > > > Good to hear that it worked for you! In the mean time I did some
> > clean-up
> > > > to
> > > > make the component more configurable... If you get the chance to
> > improve
> > > > it,
> > > > and if you are allowed to do so, it would nice if you also share the
> > > > modifications... So, that others can benefit too.
> > > >
> > > > I also have had problems with SVN and eclipse (I guess because a
> stupid
> > > > proxy in between) but after some struggle I manage to get it
> > working
> > > >
> > > > Best,
> > > >
> > > > Ernesto
> > > >
> > > > On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ) <
> > joeri.boyd...@oz.be
> > > > >wrote:
> > > >
> > > > > Hi Ernesto,
> > > > >
> > > > > I downloaded your files and it's working fine!  It's indeed very
> easy
> > > to
> > > > > create such a menu if the javascript exists !
> > > > >
> > > > > I'll have a look how we can integrate it in our new project!
> > > > >
> > > > > Thanks
> > > > > Joeri
> > > > >
> > > > >
> > > > > Ps: i had problems with the google svn... maybe it's my eclipse
> > > settings
> > > > > but I downloaded the files manually..
> > > > >
> > > > >
> > > > > -Oorspronkelijk bericht-
> > > > > Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> > > > > Verzonden: maandag 21 september 2009 15:08
> > > > > Aan: users@wicket.apache.org
> > > > > Onderwerp: Re: wicket menu
> > > > >
> > > > > Hi Joeri,
> > > > > I just implemented the menu you mentioned
> > > > >
> > > > >
> > >
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
> > > > > _menu_2/
> > > > >
> > > > > in here
> > > > >
&

Re: wicket menu

2009-09-21 Thread T Ames
Hmmm.   The demo version on the dynamicdrive site works ok in my IE6.



On Mon, Sep 21, 2009 at 11:10 AM, Ernesto Reinaldo Barreiro <
reier...@gmail.com> wrote:

> Thanks for the feedback!
> Just one question... I can't see the problems you are mentioning on my
> (MultipleIEs) IE6. On the other hand if I add the lines you mention then I
> get those sub-menus displaced to the left... 4 pixels. So, it might be that
> this is somethings that doesn't show up on my "simulated" IE6? So, I first
> committed the changes you proposed but later I rolled them back... as I
> can't see the problems myself.
>
> Maybe we should report this in here
>
>
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/
>
> As I'm just building a wrapper for what they have done
>
> Best,
>
> Ernesto
>
> On Mon, Sep 21, 2009 at 4:32 PM, T Ames  wrote:
>
> > I just downloaded and tried.
> >
> > Works good in FF 3.0.14
> >
> > If you are using IE6, you will get a 4 pixel space on a secondary list.
> > This
> > causes issues when you slide the mouse in this tiny space. In the Test
> > example, this is the list that would show when hovering over Two-2-1.
> >
> > For IE6, I can fix by adding another layer in the CSS - see "Fix IE6 sub
> > menu list".  The use of the "_" in front of the "left:" is only visible
> for
> > IE6
> >
> >
> > /*All subsequent sub menu levels vertical offset after 1st level sub menu
> > */
> > .jqueryslidemenu ul li ul li ul{
> >  top: 0;
> > }
> >
> > /*Fix IE6 sub menu list   */
> > .jqueryslidemenu ul li ul li ul li{
> > _left: -4px; /* IE6 only */
> > }
> >
> >
> > On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
> > reier...@gmail.com> wrote:
> >
> > > Hi Joeri,
> > > Good to hear that it worked for you! In the mean time I did some
> clean-up
> > > to
> > > make the component more configurable... If you get the chance to
> improve
> > > it,
> > > and if you are allowed to do so, it would nice if you also share the
> > > modifications... So, that others can benefit too.
> > >
> > > I also have had problems with SVN and eclipse (I guess because a stupid
> > > proxy in between) but after some struggle I manage to get it
> working
> > >
> > > Best,
> > >
> > > Ernesto
> > >
> > > On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ) <
> joeri.boyd...@oz.be
> > > >wrote:
> > >
> > > > Hi Ernesto,
> > > >
> > > > I downloaded your files and it's working fine!  It's indeed very easy
> > to
> > > > create such a menu if the javascript exists !
> > > >
> > > > I'll have a look how we can integrate it in our new project!
> > > >
> > > > Thanks
> > > > Joeri
> > > >
> > > >
> > > > Ps: i had problems with the google svn... maybe it's my eclipse
> > settings
> > > > but I downloaded the files manually..
> > > >
> > > >
> > > > -Oorspronkelijk bericht-
> > > > Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> > > > Verzonden: maandag 21 september 2009 15:08
> > > > Aan: users@wicket.apache.org
> > > > Onderwerp: Re: wicket menu
> > > >
> > > > Hi Joeri,
> > > > I just implemented the menu you mentioned
> > > >
> > > >
> > http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
> > > > _menu_2/
> > > >
> > > > in here
> > > >
> > > >
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > > /com/antilia/web/dynamicdrive
> > > >
> > > > If you want to give it a try... get those sources on that package and
> > > > mount
> > > > the test page
> > > >
> > > >
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > > /com/antilia/web/dynamicdrive/test/TestMenu.java
> > > >
> > > > On you application... Feel free to modify the code as you need...
> > > >
> > > > It is so easy to create components in Wicket (moreover, when someone
> > > > else
> > > > has done the dirty JavaScript work;-)
> > > >
> > > > Best,
> > > >
> > > > Ernesto
> > > >
> > > >
> > > > <
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
> > > > c/com/antilia/web/dynamicdrive>
> > > >
> > > > On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
> > > > wrote:
> > > >
> > > > > Hi,
> > > > >
> > > > >
> > > > >
> > > > > We are changing from Struts to Wicket, in our Struts application we
> > > > used
> > > > > Struts-Menu.  Now I've searched the wicket mailing list but I
> > couldn't
> > > > > find any descent menu.
> > > > >
> > > > >
> > > > >
> > > > > Is there a Wicket menu available, where can I find it ? Or should I
> > > > > write my own?
> > > > >
> > > > >
> > > > >
> > > > > I've seen some code based on YUI, but I can't find that anymore in
> > the
> > > > > svn.
> > > > >
> > > > >
> > > > >
> > > > > Joeri
> > > > >
> > > > >
> > > >
> > > > -
> > > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > > For additional commands, e-mail: users-h...@wicket.apache.org
> > > >
> > > >
> > >
> >
>


Re: wicket menu

2009-09-21 Thread Ernesto Reinaldo Barreiro
Thanks for the feedback!
Just one question... I can't see the problems you are mentioning on my
(MultipleIEs) IE6. On the other hand if I add the lines you mention then I
get those sub-menus displaced to the left... 4 pixels. So, it might be that
this is somethings that doesn't show up on my "simulated" IE6? So, I first
committed the changes you proposed but later I rolled them back... as I
can't see the problems myself.

Maybe we should report this in here

http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/

As I'm just building a wrapper for what they have done

Best,

Ernesto

On Mon, Sep 21, 2009 at 4:32 PM, T Ames  wrote:

> I just downloaded and tried.
>
> Works good in FF 3.0.14
>
> If you are using IE6, you will get a 4 pixel space on a secondary list.
> This
> causes issues when you slide the mouse in this tiny space. In the Test
> example, this is the list that would show when hovering over Two-2-1.
>
> For IE6, I can fix by adding another layer in the CSS - see "Fix IE6 sub
> menu list".  The use of the "_" in front of the "left:" is only visible for
> IE6
>
>
> /*All subsequent sub menu levels vertical offset after 1st level sub menu
> */
> .jqueryslidemenu ul li ul li ul{
>  top: 0;
> }
>
> /*Fix IE6 sub menu list   */
> .jqueryslidemenu ul li ul li ul li{
> _left: -4px; /* IE6 only */
> }
>
>
> On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
> reier...@gmail.com> wrote:
>
> > Hi Joeri,
> > Good to hear that it worked for you! In the mean time I did some clean-up
> > to
> > make the component more configurable... If you get the chance to improve
> > it,
> > and if you are allowed to do so, it would nice if you also share the
> > modifications... So, that others can benefit too.
> >
> > I also have had problems with SVN and eclipse (I guess because a stupid
> > proxy in between) but after some struggle I manage to get it working
> >
> > Best,
> >
> > Ernesto
> >
> > On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ)  > >wrote:
> >
> > > Hi Ernesto,
> > >
> > > I downloaded your files and it's working fine!  It's indeed very easy
> to
> > > create such a menu if the javascript exists !
> > >
> > > I'll have a look how we can integrate it in our new project!
> > >
> > > Thanks
> > > Joeri
> > >
> > >
> > > Ps: i had problems with the google svn... maybe it's my eclipse
> settings
> > > but I downloaded the files manually..
> > >
> > >
> > > -Oorspronkelijk bericht-
> > > Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> > > Verzonden: maandag 21 september 2009 15:08
> > > Aan: users@wicket.apache.org
> > > Onderwerp: Re: wicket menu
> > >
> > > Hi Joeri,
> > > I just implemented the menu you mentioned
> > >
> > >
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
> > > _menu_2/
> > >
> > > in here
> > >
> > >
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > /com/antilia/web/dynamicdrive
> > >
> > > If you want to give it a try... get those sources on that package and
> > > mount
> > > the test page
> > >
> > >
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > > /com/antilia/web/dynamicdrive/test/TestMenu.java
> > >
> > > On you application... Feel free to modify the code as you need...
> > >
> > > It is so easy to create components in Wicket (moreover, when someone
> > > else
> > > has done the dirty JavaScript work;-)
> > >
> > > Best,
> > >
> > > Ernesto
> > >
> > >
> > > <
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
> > > c/com/antilia/web/dynamicdrive>
> > >
> > > On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
> > > wrote:
> > >
> > > > Hi,
> > > >
> > > >
> > > >
> > > > We are changing from Struts to Wicket, in our Struts application we
> > > used
> > > > Struts-Menu.  Now I've searched the wicket mailing list but I
> couldn't
> > > > find any descent menu.
> > > >
> > > >
> > > >
> > > > Is there a Wicket menu available, where can I find it ? Or should I
> > > > write my own?
> > > >
> > > >
> > > >
> > > > I've seen some code based on YUI, but I can't find that anymore in
> the
> > > > svn.
> > > >
> > > >
> > > >
> > > > Joeri
> > > >
> > > >
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > For additional commands, e-mail: users-h...@wicket.apache.org
> > >
> > >
> >
>


Re: wicket menu

2009-09-21 Thread T Ames
I just downloaded and tried.

Works good in FF 3.0.14

If you are using IE6, you will get a 4 pixel space on a secondary list. This
causes issues when you slide the mouse in this tiny space. In the Test
example, this is the list that would show when hovering over Two-2-1.

For IE6, I can fix by adding another layer in the CSS - see "Fix IE6 sub
menu list".  The use of the "_" in front of the "left:" is only visible for
IE6


/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jqueryslidemenu ul li ul li ul{
  top: 0;
}

/*Fix IE6 sub menu list   */
.jqueryslidemenu ul li ul li ul li{
_left: -4px; /* IE6 only */
}


On Mon, Sep 21, 2009 at 9:52 AM, Ernesto Reinaldo Barreiro <
reier...@gmail.com> wrote:

> Hi Joeri,
> Good to hear that it worked for you! In the mean time I did some clean-up
> to
> make the component more configurable... If you get the chance to improve
> it,
> and if you are allowed to do so, it would nice if you also share the
> modifications... So, that others can benefit too.
>
> I also have had problems with SVN and eclipse (I guess because a stupid
> proxy in between) but after some struggle I manage to get it working
>
> Best,
>
> Ernesto
>
> On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ)  >wrote:
>
> > Hi Ernesto,
> >
> > I downloaded your files and it's working fine!  It's indeed very easy to
> > create such a menu if the javascript exists !
> >
> > I'll have a look how we can integrate it in our new project!
> >
> > Thanks
> > Joeri
> >
> >
> > Ps: i had problems with the google svn... maybe it's my eclipse settings
> > but I downloaded the files manually..
> >
> >
> > -Oorspronkelijk bericht-
> > Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> > Verzonden: maandag 21 september 2009 15:08
> > Aan: users@wicket.apache.org
> > Onderwerp: Re: wicket menu
> >
> > Hi Joeri,
> > I just implemented the menu you mentioned
> >
> > http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
> > _menu_2/
> >
> > in here
> >
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > /com/antilia/web/dynamicdrive
> >
> > If you want to give it a try... get those sources on that package and
> > mount
> > the test page
> >
> > http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> > /com/antilia/web/dynamicdrive/test/TestMenu.java
> >
> > On you application... Feel free to modify the code as you need...
> >
> > It is so easy to create components in Wicket (moreover, when someone
> > else
> > has done the dirty JavaScript work;-)
> >
> > Best,
> >
> > Ernesto
> >
> >
> > <http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
> > c/com/antilia/web/dynamicdrive>
> >
> > On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
> > wrote:
> >
> > > Hi,
> > >
> > >
> > >
> > > We are changing from Struts to Wicket, in our Struts application we
> > used
> > > Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> > > find any descent menu.
> > >
> > >
> > >
> > > Is there a Wicket menu available, where can I find it ? Or should I
> > > write my own?
> > >
> > >
> > >
> > > I've seen some code based on YUI, but I can't find that anymore in the
> > > svn.
> > >
> > >
> > >
> > > Joeri
> > >
> > >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>


Re: wicket menu

2009-09-21 Thread Ernesto Reinaldo Barreiro
Hi Joeri,
Good to hear that it worked for you! In the mean time I did some clean-up to
make the component more configurable... If you get the chance to improve it,
and if you are allowed to do so, it would nice if you also share the
modifications... So, that others can benefit too.

I also have had problems with SVN and eclipse (I guess because a stupid
proxy in between) but after some struggle I manage to get it working

Best,

Ernesto

On Mon, Sep 21, 2009 at 3:38 PM, Boydens Joeri (OZ) wrote:

> Hi Ernesto,
>
> I downloaded your files and it's working fine!  It's indeed very easy to
> create such a menu if the javascript exists !
>
> I'll have a look how we can integrate it in our new project!
>
> Thanks
> Joeri
>
>
> Ps: i had problems with the google svn... maybe it's my eclipse settings
> but I downloaded the files manually..
>
>
> -Oorspronkelijk bericht-
> Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> Verzonden: maandag 21 september 2009 15:08
> Aan: users@wicket.apache.org
> Onderwerp: Re: wicket menu
>
> Hi Joeri,
> I just implemented the menu you mentioned
>
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
> _menu_2/
>
> in here
>
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> /com/antilia/web/dynamicdrive
>
> If you want to give it a try... get those sources on that package and
> mount
> the test page
>
> http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
> /com/antilia/web/dynamicdrive/test/TestMenu.java
>
> On you application... Feel free to modify the code as you need...
>
> It is so easy to create components in Wicket (moreover, when someone
> else
> has done the dirty JavaScript work;-)
>
> Best,
>
> Ernesto
>
>
> <http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
> c/com/antilia/web/dynamicdrive>
>
> On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
> wrote:
>
> > Hi,
> >
> >
> >
> > We are changing from Struts to Wicket, in our Struts application we
> used
> > Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> > find any descent menu.
> >
> >
> >
> > Is there a Wicket menu available, where can I find it ? Or should I
> > write my own?
> >
> >
> >
> > I've seen some code based on YUI, but I can't find that anymore in the
> > svn.
> >
> >
> >
> > Joeri
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


RE: wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
Hi Ernesto,

I downloaded your files and it's working fine!  It's indeed very easy to
create such a menu if the javascript exists !

I'll have a look how we can integrate it in our new project!

Thanks
Joeri


Ps: i had problems with the google svn... maybe it's my eclipse settings
but I downloaded the files manually..


-Oorspronkelijk bericht-
Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] 
Verzonden: maandag 21 september 2009 15:08
Aan: users@wicket.apache.org
Onderwerp: Re: wicket menu

Hi Joeri,
I just implemented the menu you mentioned

http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css
_menu_2/

in here

http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
/com/antilia/web/dynamicdrive

If you want to give it a try... get those sources on that package and
mount
the test page

http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src
/com/antilia/web/dynamicdrive/test/TestMenu.java

On you application... Feel free to modify the code as you need...

It is so easy to create components in Wicket (moreover, when someone
else
has done the dirty JavaScript work;-)

Best,

Ernesto


<http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/sr
c/com/antilia/web/dynamicdrive>

On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ)
wrote:

> Hi,
>
>
>
> We are changing from Struts to Wicket, in our Struts application we
used
> Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> find any descent menu.
>
>
>
> Is there a Wicket menu available, where can I find it ? Or should I
> write my own?
>
>
>
> I've seen some code based on YUI, but I can't find that anymore in the
> svn.
>
>
>
> Joeri
>
>

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



Re: wicket menu

2009-09-21 Thread Ernesto Reinaldo Barreiro
Hi Joeri,
I just implemented the menu you mentioned

http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/

in here

http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src/com/antilia/web/dynamicdrive

If you want to give it a try... get those sources on that package and mount
the test page

http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src/com/antilia/web/dynamicdrive/test/TestMenu.java

On you application... Feel free to modify the code as you need...

It is so easy to create components in Wicket (moreover, when someone else
has done the dirty JavaScript work;-)

Best,

Ernesto


<http://code.google.com/p/antilia/source/browse/trunk/com.antilia.ext/src/com/antilia/web/dynamicdrive>

On Mon, Sep 21, 2009 at 11:03 AM, Boydens Joeri (OZ) wrote:

> Hi,
>
>
>
> We are changing from Struts to Wicket, in our Struts application we used
> Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> find any descent menu.
>
>
>
> Is there a Wicket menu available, where can I find it ? Or should I
> write my own?
>
>
>
> I've seen some code based on YUI, but I can't find that anymore in the
> svn.
>
>
>
> Joeri
>
>


Re: wicket menu

2009-09-21 Thread Ernesto Reinaldo Barreiro
I really don't know... I have used that menu component over a year ago... I
remember I did that with some wicket-1.3.* version. But I do not have the
sources of that project anymore...
Right now I using just another Menu component that I have build based on an
available JavaScript library. See this info on thread.
http://www.nabble.com/Shall-we-create-a-menu-in-wicket--td25469316.html

On the other hand it shouldn't be that difficult to build your own Menu
component using the

http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/

<http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/>you
mentioned. That's one of the thinks what makes Wicket so nice! Do you want
me to give t a try?

Best,

Ernesto

On Mon, Sep 21, 2009 at 11:31 AM, Boydens Joeri (OZ) wrote:

> Ernesto,
>
> Is there also a up-to-date release for wicket 1.3 ?
>
> Joeri
>
>  Joeri Boydens
>  OZ Onafhankelijk Ziekenfonds
>  Informatica
>  050 40 53 09
>
>
> -Oorspronkelijk bericht-
> Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
> Verzonden: maandag 21 september 2009 11:23
> Aan: users@wicket.apache.org
> Onderwerp: Re: wicket menu
>
> >
> >
> >
> >
> > I've seen some code based on YUI, but I can't find that anymore in the
> > svn.
> >
> >
> >
> I think YUI menu is in here.
>
> https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/tags/wicke
> tstuff-core-1.4.1/yui-parent/
>
> Ernesto
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: wicket menu

2009-09-21 Thread Martin Makundi
> Is there also a up-to-date release for wicket 1.3 ?

Forget already about 1.3... use 1.4+

**
Martin

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



Re: wicket menu

2009-09-21 Thread Ernesto Reinaldo Barreiro
It shouldn't be that difficult to make a Wicket component out of the example
you provide.
Best,

Ernesto

On Mon, Sep 21, 2009 at 11:10 AM, Boydens Joeri (OZ) wrote:

> Martin,
>
> I'm looking for something like
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/but
>  the items should be generated from Java code.
>
> We also need a different Menu structure depending on the user role.
>
> Joeri
>
>
> -Oorspronkelijk bericht-
> Van: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com]
> Verzonden: maandag 21 september 2009 11:06
> Aan: users@wicket.apache.org
> Onderwerp: Re: wicket menu
>
> Hover menu or just static? If static then it is easy to just change
> the html/css of tabbed panel into vertical or horizontal menu.
> Probably you can roll a hover too.
>
> **
> Martin
>
> 2009/9/21 Boydens Joeri (OZ) :
> > Hi,
> >
> >
> >
> > We are changing from Struts to Wicket, in our Struts application we used
> > Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> > find any descent menu.
> >
> >
> >
> > Is there a Wicket menu available, where can I find it ? Or should I
> > write my own?
> >
> >
> >
> > I've seen some code based on YUI, but I can't find that anymore in the
> > svn.
> >
> >
> >
> > Joeri
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


RE: wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
Ernesto,

Is there also a up-to-date release for wicket 1.3 ?

Joeri

 Joeri Boydens
 OZ Onafhankelijk Ziekenfonds
 Informatica
 050 40 53 09


-Oorspronkelijk bericht-
Van: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] 
Verzonden: maandag 21 september 2009 11:23
Aan: users@wicket.apache.org
Onderwerp: Re: wicket menu

>
>
>
>
> I've seen some code based on YUI, but I can't find that anymore in the
> svn.
>
>
>
I think YUI menu is in here.

https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/tags/wicke
tstuff-core-1.4.1/yui-parent/

Ernesto

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



Re: wicket menu

2009-09-21 Thread Ernesto Reinaldo Barreiro
Maybe you are referring to this thread?
http://www.nabble.com/Shall-we-create-a-menu-in-wicket--td25469316.html

Ernesto
<http://www.nabble.com/Shall-we-create-a-menu-in-wicket--td25469316.html#a25471808>

On Mon, Sep 21, 2009 at 11:22 AM, Martin Makundi <
martin.maku...@koodaripalvelut.com> wrote:

> Hi!
>
> Ok. The top menu looks just like Wicket tabbed panel and it can be
> different for different users. He hover effect is something you need
> extra.
>
> There was a discussion about menus in wicket just recently.. couldn't
> remember the topic. There was a project in google code about it...
> maybe someone remembers better.
>
> **
> Martin
>
> > I'm looking for something like
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/but
>  the items should be generated from Java code.
> >
> > We also need a different Menu structure depending on the user role.
> >
> > Joeri
> >
> >
> > -Oorspronkelijk bericht-
> > Van: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com]
> > Verzonden: maandag 21 september 2009 11:06
> > Aan: users@wicket.apache.org
> > Onderwerp: Re: wicket menu
> >
> > Hover menu or just static? If static then it is easy to just change
> > the html/css of tabbed panel into vertical or horizontal menu.
> > Probably you can roll a hover too.
> >
> > **
> > Martin
> >
> > 2009/9/21 Boydens Joeri (OZ) :
> >> Hi,
> >>
> >>
> >>
> >> We are changing from Struts to Wicket, in our Struts application we used
> >> Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> >> find any descent menu.
> >>
> >>
> >>
> >> Is there a Wicket menu available, where can I find it ? Or should I
> >> write my own?
> >>
> >>
> >>
> >> I've seen some code based on YUI, but I can't find that anymore in the
> >> svn.
> >>
> >>
> >>
> >> Joeri
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: wicket menu

2009-09-21 Thread Ernesto Reinaldo Barreiro
>
>
>
>
> I've seen some code based on YUI, but I can't find that anymore in the
> svn.
>
>
>
I think YUI menu is in here.

https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/tags/wicketstuff-core-1.4.1/yui-parent/

Ernesto


Re: wicket menu

2009-09-21 Thread Martin Makundi
Hi!

Ok. The top menu looks just like Wicket tabbed panel and it can be
different for different users. He hover effect is something you need
extra.

There was a discussion about menus in wicket just recently.. couldn't
remember the topic. There was a project in google code about it...
maybe someone remembers better.

**
Martin

> I'm looking for something like 
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/
>  but the items should be generated from Java code.
>
> We also need a different Menu structure depending on the user role.
>
> Joeri
>
>
> -Oorspronkelijk bericht-
> Van: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com]
> Verzonden: maandag 21 september 2009 11:06
> Aan: users@wicket.apache.org
> Onderwerp: Re: wicket menu
>
> Hover menu or just static? If static then it is easy to just change
> the html/css of tabbed panel into vertical or horizontal menu.
> Probably you can roll a hover too.
>
> **
> Martin
>
> 2009/9/21 Boydens Joeri (OZ) :
>> Hi,
>>
>>
>>
>> We are changing from Struts to Wicket, in our Struts application we used
>> Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
>> find any descent menu.
>>
>>
>>
>> Is there a Wicket menu available, where can I find it ? Or should I
>> write my own?
>>
>>
>>
>> I've seen some code based on YUI, but I can't find that anymore in the
>> svn.
>>
>>
>>
>> Joeri
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

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



RE: wicket menu

2009-09-21 Thread Martin Grigorov
check
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x/wicketstuff-suckerfish/
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x/wicketstuff-suckerfish-examples/
and the author's blog entry:
http://javathoughts.capesugarbird.com/2007/12/suckerfish-dropdowns-for-wicket-redux.html

and YahooUI based one at
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/yui-parent/


El lun, 21-09-2009 a las 11:10 +0200, Boydens Joeri (OZ) escribió:
> Martin,
> 
> I'm looking for something like 
> http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/
>  but the items should be generated from Java code.
> 
> We also need a different Menu structure depending on the user role.
> 
> Joeri
> 
> 
> -Oorspronkelijk bericht-
> Van: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] 
> Verzonden: maandag 21 september 2009 11:06
> Aan: users@wicket.apache.org
> Onderwerp: Re: wicket menu
> 
> Hover menu or just static? If static then it is easy to just change
> the html/css of tabbed panel into vertical or horizontal menu.
> Probably you can roll a hover too.
> 
> **
> Martin
> 
> 2009/9/21 Boydens Joeri (OZ) :
> > Hi,
> >
> >
> >
> > We are changing from Struts to Wicket, in our Struts application we used
> > Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> > find any descent menu.
> >
> >
> >
> > Is there a Wicket menu available, where can I find it ? Or should I
> > write my own?
> >
> >
> >
> > I've seen some code based on YUI, but I can't find that anymore in the
> > svn.
> >
> >
> >
> > Joeri
> >
> >
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 


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



RE: wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
Martin,

I'm looking for something like 
http://www.dynamicdrive.com/style/csslibrary/item/jquery_multi_level_css_menu_2/
 but the items should be generated from Java code.

We also need a different Menu structure depending on the user role.

Joeri


-Oorspronkelijk bericht-
Van: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] 
Verzonden: maandag 21 september 2009 11:06
Aan: users@wicket.apache.org
Onderwerp: Re: wicket menu

Hover menu or just static? If static then it is easy to just change
the html/css of tabbed panel into vertical or horizontal menu.
Probably you can roll a hover too.

**
Martin

2009/9/21 Boydens Joeri (OZ) :
> Hi,
>
>
>
> We are changing from Struts to Wicket, in our Struts application we used
> Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> find any descent menu.
>
>
>
> Is there a Wicket menu available, where can I find it ? Or should I
> write my own?
>
>
>
> I've seen some code based on YUI, but I can't find that anymore in the
> svn.
>
>
>
> Joeri
>
>

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


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



Re: wicket menu

2009-09-21 Thread Martin Makundi
Hover menu or just static? If static then it is easy to just change
the html/css of tabbed panel into vertical or horizontal menu.
Probably you can roll a hover too.

**
Martin

2009/9/21 Boydens Joeri (OZ) :
> Hi,
>
>
>
> We are changing from Struts to Wicket, in our Struts application we used
> Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
> find any descent menu.
>
>
>
> Is there a Wicket menu available, where can I find it ? Or should I
> write my own?
>
>
>
> I've seen some code based on YUI, but I can't find that anymore in the
> svn.
>
>
>
> Joeri
>
>

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



wicket menu

2009-09-21 Thread Boydens Joeri (OZ)
Hi,

 

We are changing from Struts to Wicket, in our Struts application we used
Struts-Menu.  Now I've searched the wicket mailing list but I couldn't
find any descent menu.

 

Is there a Wicket menu available, where can I find it ? Or should I
write my own?  

 

I've seen some code based on YUI, but I can't find that anymore in the
svn.  

 

Joeri



Re: Wicket menu with submenu "dialog window"

2007-10-02 Thread Artur W.


lizz wrote:
> 
> Has anyone made a menu (with menu items and submenus) in wicket? I would
> like a menu that looks more or less like the Swing JMenu.
> 

I use AdxMenu:
http://www.aplus.co.yu/adxmenudev/adxmenu-v4-flyout-drop-down-menu/

It fits very well with Wicket.


Artur

-- 
View this message in context: 
http://www.nabble.com/Wicket-menu-with-submenu-%22dialog-window%22-tf4543964.html#a12994070
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket menu with submenu "dialog window"

2007-10-01 Thread Doug Leeper

I forgot to mention which menus are currently supported in menu2:

- MenuBar
- Menu
- Group Menu (with and without labels)

Looking for help with ContextMenu as it is a beast in itself.  Anyone
created/integrated YUI ContextMenu with Wicket?
-- 
View this message in context: 
http://www.nabble.com/Wicket-menu-with-submenu-%22dialog-window%22-tf4543964.html#a12988297
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket menu with submenu "dialog window"

2007-10-01 Thread Doug Leeper

There is a YUI menu implementation in wicket stuff already.
(wicket-contrib-yui)

The package that you need to use is org.wicketstuff.yui.markup.html.menu2.

Why menu2?  Well...working with Jim McMcLaughlin (creator of menu), we
decided to create a separate package b/c menu2 relied on YUI 2.3 and there
were significant changes between 2.2 and 2.3.  Plus there was a complete
refactoring between menu and menu2 which made it more usable/friendlier. 
So...to keep original menu users happy...we created a menu2 package with the
idea that it will eventually be replaced.

There is an example already in the wicketstuff-yui-examples that show cases
the two different menus.

Hope that helps.

- Doug
-- 
View this message in context: 
http://www.nabble.com/Wicket-menu-with-submenu-%22dialog-window%22-tf4543964.html#a12988229
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket menu with submenu "dialog window"

2007-10-01 Thread Nino Saturnino Martinez Vazquez Wael
You should really create wicket stuff project for this. Or perhaps it's 
something for the minis?


Kent Tong wrote:

lizz wrote:
  

Has anyone made a menu (with menu items and submenus) in wicket? I would
like a menu that looks more or less like the Swing JMenu.

I saw a reference to
http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-extensions-menubar/
but didn’t find that project.

I need a menu that contains menu items and submenus. The menu items are
easy to make but I dont know how to make the submenu.




As a way to learn YUI, I've made a wicket YUI menu component. You can
download
and adapt it for your needs (no warranty of any kind). 
http://www.nabble.com/file/p12974699/yui-menu.zip yui-menu.zip 
  


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket menu with submenu "dialog window"

2007-10-01 Thread Kent Tong


lizz wrote:
> 
> Has anyone made a menu (with menu items and submenus) in wicket? I would
> like a menu that looks more or less like the Swing JMenu.
> 
> I saw a reference to
> http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-extensions-menubar/
> but didn’t find that project.
> 
> I need a menu that contains menu items and submenus. The menu items are
> easy to make but I dont know how to make the submenu.
> 

As a way to learn YUI, I've made a wicket YUI menu component. You can
download
and adapt it for your needs (no warranty of any kind). 
http://www.nabble.com/file/p12974699/yui-menu.zip yui-menu.zip 
-- 
View this message in context: 
http://www.nabble.com/Wicket-menu-with-submenu-%22dialog-window%22-tf4543964.html#a12974699
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Wicket menu with submenu "dialog window"

2007-09-30 Thread lizz

Has anyone made a menu (with menu items and submenus) in wicket? I would like
a menu that looks more or less like the Swing JMenu.

I saw a reference to
http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-extensions-menubar/
but didn’t find that project.

I need a menu that contains menu items and submenus. The menu items are easy
to make but I dont know how to make the submenu.



-- 
View this message in context: 
http://www.nabble.com/Wicket-menu-with-submenu-%22dialog-window%22-tf4543964.html#a12967293
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]