Re: Newbie question : How do I display a tabbed list vertically rather than horizontally?

2014-06-09 Thread Mihir Chhaya
With CSS I provided, were you able to view your tab controls position changing any bit? Though you don't need any kind of animation here; Translate might be helpful. Something like below in 'div.tabpanel div.tab-row' (in CSS)? Here is one for chrome: -webkit-transform: translate(Xpx,Ypx); You wil

Help request regarding simple DefaultNestedTree implementation

2014-06-09 Thread denethon
Hi guys, I'm having trouble implementing the AdvancedTreePage-example from Wicket Examples. As the example is equipped with a dropdown to choose from different content presentations and a dropdown to choose from different themes, I'm trying to simplify the example into my own implementation using

Re: Newbie question : How do I display a tabbed list vertically rather than horizontally?

2014-06-09 Thread Tim Collins
Hmmm That did not work. To be clear, this is what the code looks like : package com.charityusa.janus.page.home; import com.charityusa.config.AppConfig; import com.charityusa.janus.panel.footer.Footer; import com.charityusa.janus.panel.vendor.CoolibarUpload; import com.charityusa.janus.panel

Re: Dataview help

2014-06-09 Thread kumar ramanathan
Hi Paul, Thanks So much i have succesfully displayed the data in table using repeating view.The code is shown below. HelloWorldApplication.java package com.lnn.app; import org.apache.wicket.Page; import org.apache.wicket.protocol.http.WebApplication; import com.lnn.page.HelloWorld; public clas

Re: Newbie question : How do I display a tabbed list vertically rather than horizontally?

2014-06-09 Thread Mihir Chhaya
Tim, Do you need to show only titles in vertical or tabs in vertical with title displayed horizontally? You can do that with CSS itself as below. div.tabpanel div.tab-row { float: left; background: #F2F9FC url("../images/tabs/bg.gif") repeat-x bottom; line-height: normal; /*-webkit-transform:rota

Re: javascript reference header item with async attribute

2014-06-09 Thread Simon B
Hello Andrea, Thank you for replying. In the end I subclassed JavaScriptUrlReferenceHeaderItem creating my own AsyncJavaScriptUrlReferenceHeaderItem class and overrode the public void render(Response response); method, take as a reference the implemenation from JavaScriptUtils.writeJavaScr

Newbie question : How do I display a tabbed list vertically rather than horizontally?

2014-06-09 Thread Tim Collins
I am rather new to wicket and am trying to do something that ought to be rather easy... I want to make the tabs I display show up vertically rather than horizontally. I am currently building a arraylist of tabs and then passing them to AjaxTabbedPanel, but as far as I can see there is no way t

Re: Dataview help

2014-06-09 Thread Paul Bors
Have you tried one of the Repeaters from: http://www.wicket-library.com/wicket-examples/index.html Direct link: http://www.wicket-library.com/wicket-examples/repeater/ They are also explained in the Wicket Free Guide at: http://wicket.apache.org/guide/guide/single.html#repeaters Let us know if y

Re: javascript reference header item with async attribute

2014-06-09 Thread Andrea Del Bene
AFAIK you can use attribute 'defer' with JavaScriptHeaderItem. I'm not sure that exists a standard way to add other attribute to

javascript reference header item with async attribute

2014-06-09 Thread Simon B
Hi, I'm using Wicket 6.15 What is the best way to set the async attribute when rendering a javascript header item. I would like to change : to or even I see that there is a flag for setting the defer attribute but could not find anything for async. Any suggestions? Cheers Simon --