Re: WicketStuff yui-parent yui examples war not deploying correctly

2009-03-23 Thread Joshua Lim
Hi I was updating yui examples but I run the examples using Jetty in eclipse. It was working for me. there was a missing dependency for slf4j in yui-example but I am not sure if had caused any problem for you in tomcat. regards josh 2009/3/22 Flavius flav...@silverlion.com I just

Re: Did someone a YUI splitbutton contribution?

2008-10-16 Thread Joshua Lim
there's yui menu in wicket-stuff - I am using it :) wicket-contrib-yui / examples 2008/10/9 Newgro [EMAIL PROTECTED] Hi *, i would like to integrate the yui splitbutton into my application. I tried to integrate it myself, but it's a hopeless with my small experience in building

Re: Did someone a YUI splitbutton contribution?

2008-10-16 Thread Joshua Lim
I use the menu2 only though :( I am using trunk version and it should work with wicket 1.3+ 2008/10/17 Per Newgro [EMAIL PROTECTED] Sure i know the contribution. But i didn't found the split button. Do you use the splitbutton? Can you please tell me the lib-version and the package it's

Re: How to use Menu component in wicket-yui stuff?

2008-11-14 Thread Joshua Lim
you can check out wicket-contrib-yui-examples 2008/10/23 张伟 [EMAIL PROTECTED] Hello, I want to konw how to use Menu component in wicket-yui stuff? Can anyone give me a demo or example? I could ont find any javadoc or sourcecode. Thanks!

Re: Wicket YUI integration

2009-09-01 Thread Joshua Lim
Hi Frank there's Yui (2) integration in wicketstuff-core/yui great if you could add to it Josh 2009/8/31 Frank van Lankvelt f.vanlankv...@onehippo.com we've been developing a wicket application for some time now, where the client keeps pushing for more and more fancy UI components. We've

Re: Wicket YUI - Integration (Slider Question)

2009-11-28 Thread Joshua Lim
Hi J.D. the tick marks on the background does not generate automatically unfortunately, because it's a css background image. In order to make it strechable I used a repeating background image for that. you can however, try overriding the Yui*Settings to provide your own background image that

Re: what is the state of wicket-contrib?

2009-03-30 Thread Joshua Lim
Hi I had made a copy for wicket 1.3.5 some time back if it helps ... it is here : https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-contrib-yui-1.3.5 2009/3/26 Vladimir K koval...@gmail.com Thanks Jeremy. I will have a look at snaphot. But what I'm concerned

Re: yui slider component does not work

2009-05-08 Thread Joshua Lim
Hi Christoph This was due to YuiHeaderContributor being moved to another package. I was doing some house keeping :p it should be fixed in /yui/ trunk now (no change in yui-examples). can you try again? Joshua 2009/5/5 Christoph Grün chris...@gmx.at Hello, I have downloaded the

Re: Drag Drop

2009-07-11 Thread Joshua Lim
Hi Pierre, I think I need to explain a little the state of Yui Integration with wicket. If you're using the sortable package, with it's Droppable and SortableList. Then don't use the YuiDDTarget. If you want to use YuiDDTarget, then work with the YuiDDList / YuiDDListView / YuiDDListViewPanel.

Re: YUI drag and drop problem in Wicket 1.4 rc4

2009-07-11 Thread Joshua Lim
Hi Johan have you tried the yui-examples, Reordering List ? the list2 and list3 are using YuiDDListView, and works for me. What is your browser though? Regards Josh 2009/6/5 Johan Haleby hal...@gmail.com Hi, I'm using the latest snapshot of the YUI drag and drop component (a

Re: How to show/hide, enable/disable items in menu based on YUI menu2

2009-07-15 Thread Joshua Lim
Hi I've made some changes on the trunk to allow AjaxLinkAction, and remove the setRenderBodyOnly so that you can basically modify the menu 'ajaxically'. Also I've applied the yui-sam-skin by default for YuiMenuBar and YuiMenu. and it is now using YuiLoader and 2.7.0 check out the yui-examples

Re: How to show/hide, enable/disable items in menu based on YUI menu2

2009-07-16 Thread Joshua Lim
2009/7/16 Petr Fejfar petr.fej...@gmail.com thank for your effort. I tried your improvements, but it stil does not work for me. It is possible that I'm missing something, but some problems can be seen in your yui-example as well: After you click M2:L3 item to remove 1st item from menu: -

Re: How to show/hide, enable/disable items in menu based on YUI menu2

2009-07-16 Thread Joshua Lim
Hi Petr, The table would be interesting, could you email it to me ? thanks I'll take a look at the rest of the yuimenu when I reach that point. :) Joshua 2009/7/17 Petr Fejfar petr.fej...@gmail.com On Thu, Jul 16, 2009 at 4:25 PM, Joshua Limlim.j...@gmail.com wrote: Did you check out yui as

Re: How to show/hide, enable/disable items in menu based on YUI menu2

2009-07-18 Thread Joshua Lim
updated menubar with menuitems check/disable/selected options it should work on FF at least. josh 2009/7/17 Petr Fejfar petr.fej...@gmail.com On Thu, Jul 16, 2009 at 11:43 PM, Petr Fejfarpetr.fej...@gmail.com wrote: tries to be compatible with. Please find out attached table - maybe it

Re: Looking for Pop-up menu...

2009-07-23 Thread Joshua Lim
I Think menu2 can do what you want as Ryan said. You can override the getCssClass() to return your own class name, because the default is yui-skin-sam which will span the width of yui-menu to the whole of the containing box. final YuiMenuBar mb = new YuiMenuBar(menuBar) {

Bypassing required form validation for search submit link

2009-07-23 Thread Joshua Lim
Hi I have a Form with fields marked with various validators. F1 = required F2 = length 4 F3 = required F4 . And I also have 2 submit links, save and search. When I click on save, the normal default form processing happens. But when I click on search I want to bypass all required validators.