Re: wicketstuff-core jars

2015-10-16 Thread Marcel Barbosa Pinto
Hi Martin By adding the artifact to my pom, maven tries to download from this URL http://repo1.maven.apache.org/maven2/org/wicketstuff/wicketstuff-core/7.0.0/wicketstuff-core-7.0.0.jar Here is the artifact that I got from http://mvnrepository.com/artifact/org.wicketstuff/wicketstuff-core:

Re: multiline Table Headers

2015-10-16 Thread Martin Grigorov
Like this http://stackoverflow.com/questions/18680044/how-can-i-construct-a-table-header-than-spans-multiple-rows-in-html ? Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Oct 16, 2015 at 9:41 PM, Lois GreeneHernandez < lgreenehernan...@knoa.com> wrote: >

Re: wicketstuff-core jars

2015-10-16 Thread Martin Grigorov
This looks like the parent pom of the project. Check in one folder above. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Oct 16, 2015 at 11:27 PM, Marcel Barbosa Pinto < marcel.po...@gmail.com> wrote: > Hi Guys, > > I've just tried to download this

Re: wicketstuff-core jars

2015-10-16 Thread Marcel Barbosa Pinto
You are totally right. I was missing that. I've found exactly the packages that I wanted. Sorry about that. On Fri, Oct 16, 2015 at 6:48 PM, Martin Grigorov wrote: > WicketStuff is a project with many sub-projects. > The Maven dependency you add to your project is the

Re: wicketstuff-core jars

2015-10-16 Thread Martin Grigorov
WicketStuff is a project with many sub-projects. The Maven dependency you add to your project is the Maven parent pom (see https://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Project_Inheritance ). I guess you need to use just one/few of the sub-projects. Check

multiline Table Headers

2015-10-16 Thread Lois GreeneHernandez
Is it possible to have multi line data table headings? Specifically I'd like to do something like this: | Common Heading | columnA | columnB | columnC | Please advise. Thanks Lois

Re: Regarding WicketStuff projects deliverables as OSGI bundles

2015-10-16 Thread Rakesh A
Wicket deliverables are bundles, but WicketStuff project deliverables are plain JARs. I'd like to have WicketStuff JARs as bundles as well. Regards, Rakesh.A -- View this message in context:

Re: Regarding WicketStuff projects deliverables as OSGI bundles

2015-10-16 Thread Christoph Läubrich
By default, the bundle-plugin computes all import/export directives automatically. In Wicket 6 (at least 6.14) already contained OSGi headers so was this removed in later versions? Am 16.10.2015 06:06, schrieb Rakesh A: Hi, Yes, we might've to add some (import, export package) configuration;

Validating Forms before page load

2015-10-16 Thread ChambreNoire
Hello, Is there any way to programmatically validate a wicket form on page/panel load? I have a panel who's visibility is determined by its sibling form's validity. That works fine except on initially loading the parent panel as the new form is considered valid regardless of content... Many

Re: Validating Forms before page load

2015-10-16 Thread Martin Grigorov
Hi, You can use the form model object in the visibility check - if it is "empty" then do whatever is needed. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Oct 16, 2015 at 3:57 PM, ChambreNoire wrote: > Hello, > > Is there any way to

Re: Validating Forms before page load

2015-10-16 Thread ChambreNoire
Yeah I'd have prefered to just call form.hasError rather than checking 10 fields on the modelobject but hey it works! Thanks, CN -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Validating-Forms-before-page-load-tp4672260p4672262.html Sent from the Users forum mailing