Re: PageableListView with two rows

2013-06-11 Thread Eric Jablow
ListView and its subclasses do not require the use of tables. If another style of markup is useful, use that. You can have a with nested s, In fact, you could create a ProfilePanel and use a div for each. On Mon, Jun 10, 2013 at 6:06 PM, Dan Retzlaff wrote: > Maybe I just don't understand you

Re: Adding a large amount of MarkupContainers into the ListView or RepeatingView

2013-03-26 Thread Eric Jablow
On Tue, Mar 26, 2013 at 5:33 PM, Eric Jablow wrote: > rates during the Crimean War, and Miraud's chart of the Napoleon's March to Minard, darn it. > Respectfully, > Eric Jablow - To unsubscribe, e-m

Re: Adding a large amount of MarkupContainers into the ListView or RepeatingView

2013-03-26 Thread Eric Jablow
phs date back to William Playfair around 1786. These included the forerunner of the pie chart. In the 19th Century, there was Florence Nightingale's coxcomb charts of disease rates during the Crimean War, and Miraud's chart of the Napoleon's Ma

Re: Free Wicket guide now available!

2013-03-21 Thread Eric Jablow
Also, did you use \TeX or \LaTeX or \ConTeXt? If you did, what additional packages did you use? On Thu, Mar 21, 2013 at 3:49 PM, Bertrand Guay-Paquet wrote: > Thanks a lot for your effort! > > Before I start reading whole sections, is the source of the document > available somewhere? I'd like to

Re: Wicket 6.5 CompoundPropertyModel constructor ambiguity

2013-01-28 Thread Eric Jablow
e CPM constructor: public class CompoundPropertyModel { public CompoundPropertyModel(IModel model) {..} } Remember, Java Generics have to match exactly. Respectfully, Eric Jablow - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Unit testing for a page

2012-11-29 Thread Eric Jablow
application, say through wicket-guice or wicket-cdi. Use an alternative test Guice module to build your pages with while testing. So, when you reach the second test page, it gets built with low-cost data, Respectfully, Eric Jablow --

Re: Finding HTML Markup in External JARs

2012-11-14 Thread Eric Jablow
On Wed, Nov 14, 2012 at 11:35 AM, Sven Meier wrote: > Depending on what your *PathLocator *does, it might not serve the usual > markup from beside components. > > >> Wicket is finding HTML files in *other* JARs. This is a puzzler. Could this be a ClassLoader issue? The two JAR files' ClassLoaders

Re: Validation with component not required

2012-10-10 Thread Eric Jablow
ers match /\d{10}/ with optional hyphens, parentheses, and dots. Other counrties have their own systems. How do you create a locale-aware Wicket validator? Respectfully, Eric Jablow - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: css style in listview

2012-08-30 Thread Eric Jablow
On Thu, Aug 30, 2012 at 6:46 AM, Pratibha wrote: > Hi team > > i like to add style in listview as mentioned below > item.add(new SimpleAttributeModifier("style", "background-colr:red")); > > Its not working for me but rest others are working It is better to use classes instead of inline styles.

Re: Next database key pre-filled in form and associated with PropertyModel returns null

2012-07-17 Thread Eric Jablow
he system should remain on the form page. You can reuse the form page if you want to edit an existing person. You just don't give the user any way to edit the id, and you call an update method instead. Respectfully, Eric Jablow

Re: constant strings

2012-05-02 Thread Eric Jablow
d, there's a value in consistency too. Some people go to the extreme of never including any plain text in an html file at all. Respectfully, Eric Jablow > > > > --**--**- > To unsubscribe, e-mail: > user

Re: IDataProvider#size()

2012-04-12 Thread Eric Jablow
On Wed, Apr 11, 2012 at 9:59 PM, Dan Retzlaff wrote: > For SQL-based views, the application complexity comes from the need to > construct a count(*) query with exactly the same criteria as the subsequent > result query. In my experience, this pollutes DAO interfaces and > IDataProvider implementa

Re: Getting new lines in RepeatingView

2012-02-28 Thread Eric Jablow
gt; Is there any way to do this in DEVELOPMENT mode only? Alternatively, does Wicket come with an HTML minimizer? Or will server auto-gzipping take care of that? Respectfully, Eric Jablow

Re: Getting new lines in RepeatingView

2012-02-24 Thread Eric Jablow
On Fri, Feb 24, 2012 at 1:54 AM, Martin Grigorov wrote: > Hi, > > I think you can override RepeatingView's > org.apache.wicket.markup.repeater.AbstractRepeater#renderChild(): > { > > super.renderChild(component); > > getResponse().write(""); > > } > I don't think is standards-compliant mid-. W