RE: right click popup context menu

2012-01-31 Thread suryaraju
I have a similar requirement for my project .could you share the implementation or guide me to the example which can help to implement context menu on right of a grid cell in Wicket. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/right-click-popup-context-menu-tp18

Re: right click popup context menu

2008-10-15 Thread mkamneng
Hi Doug, thank you very much for your time and patience. I try it again using only the dependencies from the contrib-yui-examples AND IT'S WORKING. Unfortunately we strongly use the generic concept from java and the current context2menu is at the moment only supported by wicket1.3, which is not

Re: right click popup context menu

2008-10-14 Thread Doug Leeper
I just updated from SVN for projects wicketstuff-yui-examples and wicket-contrib-yui. Did a mvn eclipse:eclipse on both. in the wicketstuff-yui-examples, i did a mvn jetty:run There were no errors and I was able to access the web app and subsequently the menu2 examples. As far as your error...

Re: right click popup context menu

2008-10-08 Thread mkamneng
Hello Doug, I'm still looking forward to hear from you. I'm new in wicket and I have at the moment time to investigate why a lot of wicket-contrib-yui components can't be added in wicket components (wicket version 13 and 1.4). I will be very happy if you can give me some advise where to start to

Re: right click popup context menu

2008-10-07 Thread mkamneng
I try it with apache-wicket-1.3.4 and apache-wicket-1.4-m3 and I'm getting the same compilation errors! Doug Leeper wrote: > > what version of wicket are you using? > > I have not tested/ported any of the menu2 with wicket 1.4. > -- View this message in context: http://www.nabble.com/righ

Re: right click popup context menu

2008-10-07 Thread Doug Leeper
what version of wicket are you using? I have not tested/ported any of the menu2 with wicket 1.4. -- View this message in context: http://www.nabble.com/right-click-popup-context-menu-tp15876468p19865384.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: right click popup context menu

2008-10-07 Thread mkamneng
Hello Doug, I'm have some difficulties getting the contextMenu running. I checkout today the wicket-contrib-yui project from the svn and install it using maven. Trying after that using the wicket-contrib-yui.jar and all dependencies to create my context menu in the same way as in the ContextMe

Re: right click popup context menu

2008-03-31 Thread Nino Saturnino Martinez Vazquez Wael
I'd still say it were context specific, and depending on complexity of the application. Do you expect the average web surfer to use your application or is it someone with domain expertise? If it's the latter, then right click menus could make sense. That way you could also probably dictate wha

Re: right click popup context menu

2008-03-31 Thread Reinout van Schouwen
Hello Karen, Op donderdag 06-03-2008 om 10:42 uur [tijdzone -0500], schreef Karen Schaper: > I have a data table and for each row that is generated, I'd like to be able > to right click on the row and have actions that I can perform on the row > appear in a popup menu. At risk of stating the obv

RE: right click popup context menu

2008-03-07 Thread Karen Schaper
Yep. I have that working just as you described below. Glad I'm doing it correctly. Thanks > -Original Message- > From: Doug Leeper [mailto:[EMAIL PROTECTED] > Sent: Friday, March 07, 2008 5:43 PM > To: users@wicket.apache.org > Subject: RE: right click popup contex

RE: right click popup context menu

2008-03-07 Thread Doug Leeper
In the populateItem, you will need to do the following: contextMenuBehavior.applyAttributes(item, popupMenu, new Model( rowId)); Where rowId is the value you are looking for when the action has been selected (the targetId in the onClick method) private class MyAction extends AbstractYuiMenuAct

RE: right click popup context menu

2008-03-07 Thread Karen Schaper
March 07, 2008 2:20 PM > To: users@wicket.apache.org > Subject: Re: right click popup context menu > > > > Take a look at wicket-contrib-yui. There is a context menu > (built on top of > YUI) contained in org.wicketstuff.yui.markup.html.menu2.contextMenu > > The

Re: right click popup context menu

2008-03-07 Thread Doug Leeper
Take a look at wicket-contrib-yui. There is a context menu (built on top of YUI) contained in org.wicketstuff.yui.markup.html.menu2.contextMenu There are some examples in wicketstuff-yui-examples for the Context Menu (tree and list/data view) Note: these are SVN projects located at http://wicke