what license is WicketStuff DataTables ?

2012-09-14 Thread seba.wag...@gmail.com
I was wondering what license: https://github.com/wicketstuff/core/wiki/DataTables is. I could not find any information on the licenses of that product and if it is compatible with Wicket 6.0.0. Does anybody know something about that? Thanks! Sebastian -- Sebastian Wagner

Re: what license is WicketStuff DataTables ?

2012-09-14 Thread Martin Grigorov
I think it is ASF v2 but let's ask its contributor - Bruno. On Fri, Sep 14, 2012 at 10:33 AM, seba.wag...@gmail.com seba.wag...@gmail.com wrote: I was wondering what license: https://github.com/wicketstuff/core/wiki/DataTables is. I could not find any information on the licenses of that

Announce: Wicket and Dojo integration for Wicket 6.0.0

2012-09-14 Thread Gonzalo Aguilar Delgado
Hello, I'm doing some work integrating Wicket and Dojo. I've just taken the well done wiquery library and tried to go that way. But I'm diverging to optimize the library for Dojo great toolkit. Maybe you want take a look. There's not much done, but the core. Hope it's the place to announce.

Generating markup from Wicket

2012-09-14 Thread jam.ntk
Hi - I have data strings coming from database e.g. ABC, 123, DEF,456. Now I am creating a MultilineLabel to hold the string with new line characters to diplay on the page with line breaks. It is working fine but I want to display them as mark up list items as it would display with the following

Re: Generating markup from Wicket

2012-09-14 Thread vineet semwal
use a repeater On Fri, Sep 14, 2012 at 5:34 PM, jam.ntk jam@gmail.com wrote: Hi - I have data strings coming from database e.g. ABC, 123, DEF,456. Now I am creating a MultilineLabel to hold the string with new line characters to diplay on the page with line breaks. It is working fine but I

Re: Generating markup from Wicket

2012-09-14 Thread jam.ntk
Thanks, I think i can achieve this simply by adding mark up tags in the wicket code. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Generating-markup-from-Wicket-tp4652003p4652005.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Generating markup from Wicket

2012-09-14 Thread Sven Meier
Here's the sample code: ul li wicket:id=strings span wicket:id=string/span /li /ul IModelString strings = ...; add(new ListView(strings, strings)) { protected void populateItem(ListItemString item) { item.add(new Label(string, item.getModel())); } }; Not too much

Re: Using and creating URLs to Bookmarkable Pages without Wicket Application

2012-09-14 Thread Fergal Keating
Im not clear if this is what your looking for, but it seems you just need to set your application to be able to accept the URL format http://wicket.website.com/ConfirmationPage/?user=footoken=1234http://wicket.website.com/ConfirmationPage.html?user=footoken=1234 and then you can generate it

Re: Using and creating URLs to Bookmarkable Pages without Wicket Application

2012-09-14 Thread Dirk Forchel
I'm already familiar with the usual way how to mount bookmarkable pages and how to handle page parameters. That's not the point. I don't wanna create the URLs manually, because Wicket does already have the knowledge about all mounted pages. The URLs might be change in the future (different

RE: getting AutoCompleteTextField to display values

2012-09-14 Thread Paul Bors
I would recommend using Select2 if you really want to show all the available options and let the user filter through them. See wicket-select2: https://github.com/ivaynberg/wicket-select2 And also the live demos at: http://ivaynberg.github.com/select2/ ~ Thank you, Paul Bors -Original