Re: [Wicket-user] Right-click context menu

2007-02-04 Thread Jean-Baptiste Quenot
* Bruce Fraser: We are looking for something similar to the Dojo one (http://dojotoolkit.org/ General Widgets - Menu - ContextMenu), and that will most likely be what we'll use if we can't find a Wicket alternative. If you think the Dojo ContextMenu could be

Re: [Wicket-user] Right-click context menu

2007-02-04 Thread Vincent Demay
Jean-Baptiste Quenot a écrit : * Bruce Fraser: We are looking for something similar to the Dojo one (http://dojotoolkit.org/ General Widgets - Menu - ContextMenu), and that will most likely be what we'll use if we can't find a Wicket alternative. If you

Re: [Wicket-user] Right-click context menu

2007-02-04 Thread Jean-Baptiste Quenot
* Vincent Demay: I've just finished to integrate DojoMenu Hi Vincent, Great work! However in your MenuSample example, it's not clear how to intercept which particular menu item has been selected. Am I missing something? -- Jean-Baptiste Quenot aka John Banana Qwerty

Re: [Wicket-user] Right-click context menu

2007-02-04 Thread Vincent Demay
Jean-Baptiste Quenot a écrit : * Vincent Demay: I've just finished to integrate DojoMenu Hi Vincent, Great work! However in your MenuSample example, it's not clear how to intercept which particular menu item has been selected. Am I missing something? Thanks JB Yes you miss

Re: [Wicket-user] Right-click context menu

2007-02-03 Thread Ivo van Dongen
I'm working on the yui menu. Its working in firefox, but for some strange reason not in ie. A pop-up appears with the message: Could not complete the operation due to error 80004004. As soon as that is fixed I'll post it on the mailing list. On 2/1/07, Shams Mahmood [EMAIL PROTECTED] wrote:

Re: [Wicket-user] Right-click context menu

2007-02-01 Thread Scott Swank
I agree with the benefits of a lightweight approach like you're describing, but would it make custom css tweaks harder? On 1/31/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i dont know if it makes sense to back the menu items with a listview, labels, links, etc. for what purpose? i would have a

Re: [Wicket-user] Right-click context menu

2007-02-01 Thread Igor Vaynberg
what is custom css? you should put in css class names into the necessary elements, and apply css solely based on that. if someone picks a javascript impl of the menu and people agree on it maybe i will write one up as a demo -igor On 2/1/07, Scott Swank [EMAIL PROTECTED] wrote: I agree

Re: [Wicket-user] Right-click context menu

2007-02-01 Thread Scott Swank
By custom I just meant a color palette that matched the rest of the application in question. I think that such a sample css file would be entirely sufficient. On 2/1/07, Igor Vaynberg [EMAIL PROTECTED] wrote: what is custom css? you should put in css class names into the necessary elements,

[Wicket-user] Right-click context menu

2007-01-31 Thread Bruce Fraser
Hi, Does anyone know of, or is anyone working on, a Wicket-based right-click context menu? We are looking for something similar to the Dojo one (http://dojotoolkit.org/ General Widgets - Menu - ContextMenu), and that will most likely be what we'll use if we can't find a Wicket alternative. If

Re: [Wicket-user] Right-click context menu

2007-01-31 Thread Sean Sullivan
Yahoo UI has a nice context menu: http://developer.yahoo.com/yui/menu/#contextmenu http://developer.yahoo.com/yui/examples/menu/contextmenu.html It should be possible to wrap this menu as a Wicket component. Sean On 1/31/07, Bruce Fraser [EMAIL PROTECTED] wrote: Hi, Does anyone know

Re: [Wicket-user] Right-click context menu

2007-01-31 Thread Shams Mahmood
See the following site : http://www.dhtmlgoodies.com/index.html?whichScript=context_menu demo : http://www.dhtmlgoodies.com/scripts/context-menu/context-menu.html I think the html can be easily generated by using a ListView and Adding Links inisde and handling the onclick of the links. Hope u

Re: [Wicket-user] Right-click context menu

2007-01-31 Thread Igor Vaynberg
i dont know if it makes sense to back the menu items with a listview, labels, links, etc. for what purpose? i would have a single component for the menu that spits out the necessary html directly into the page rather then backing it via actual wicket components. this menu component can implement