Show html help page from dropdown

2014-07-16 Thread Peter Diefenthaeler
Hi, I would like to show an external html page with help information depending on a choice of an DropDownChoice. With ExternalLinks I managed to do this, but I'm missing an example like opening a modal window. Regards, Peter PETER DIEFENTHÄLER Technology Architect CSC Barthstr. 4, 80339 Münche

Re: Show html help page from dropdown

2014-07-16 Thread Ernesto Reinaldo Barreiro
Add an onchange Ajax behaviour and trigger opening of modal? On 16 Jul 2014 14:17, "Peter Diefenthaeler" wrote: > Hi, > I would like to show an external html page with help information depending > on a choice of an DropDownChoice. > With ExternalLinks I managed to do this, but I'm missing an exam

Re: Show html help page from dropdown

2014-07-16 Thread PDiefent
I only want to open a html page in a new browser window or tab, no modal popup. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Show-html-help-page-from-dropdown-tp424p426.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Show html help page from dropdown

2014-07-16 Thread Sven Meier
choice.add(new AjaxEventBehavior("click") { protected void onEvent(final AjaxRequestTarget target) { PopupSettings popup = new PopupSettings("_blank"); popup.setTarget("'http://wicket.apache.org'"); // note the single quotes! target.appendJavaScript(popup.getPopupJav

Re: Show html help page from dropdown

2014-07-16 Thread PDiefent
Perfect, that's what I searched for. Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Show-html-help-page-from-dropdown-tp424p428.html Sent from the Users forum mailing list archive at Nabble.com. -

removing table when the output list is empty in listview/dataview

2014-07-16 Thread K
Hi I am displaying list values using listview/dataview but the problem is that i dont know how to eliminate the heading part when my list is empty My Mark Up is

inmethod grid - Ajaxically update child grid from Master grid

2014-07-16 Thread Mihir Chhaya
Hello, I am using inMethod data grid with Wicket 1.5. I have a page to show master grid (MasterPanel). MasterPanel has child grid (ChildPanel) to display child records. ChildPanel accepts MasterBean as one of the arguments of the Constructor to retrieve child records using Master PK id. Now, on

Re: Lightbox2 Integration

2014-07-16 Thread Jered Myers
The WicketStuff version of the JavaScript file was out of date. After I fixed the JavaScript both the thumbnail and full image displayed. The close image icon still wasn't showing, so I just rolled my own version from http://lokeshdhakar.com/projects/lightbox2/. I think all that needs to be d