Deployment models (was: Re: Wicket job market)

2013-02-04 Thread Emmanouil Batsis (Manos)
On 02/04/2013 02:05 PM, Philippe Demaison wrote: What needs to be improved to get a wider adoption of Wicket ? That is probably the most relevant subject IMHO. FWIW, a largely disruptive factor is a new but increasingly important business/deployment model, that of the cross-domain, embedded

Theoretical Q: JQuery client-only/RPC app?

2012-10-26 Thread Emmanouil Batsis (Manos)
Now that wicket uses jquery, would it be possible to implement a jquery/client-only app for a wicket backend? To be more specific, I am asking mainly about the possibility of producing a javascript-only application client for a wicket6 app/json RPC backend. Thanks, Maons

Help migrating page mounts to 1.5

2012-08-06 Thread Emmanouil Batsis (Manos)
Hello, I've spent a couple of days migrating 1.4 code to compile with 1.5. The docs have been helpfull but I'm stuck and would appreciate if someone could point out what i am missing tryint ot migrate this: //- mount(new IndexedParamUrlCodingStrategy(/item,

Re: igor's select2 script

2012-05-13 Thread Emmanouil Batsis (Manos)
On 05/13/2012 05:45 PM, Uwe Schäfer wrote: On 05/09/2012 09:23 PM, Dan Retzlaff wrote: Here you go, Uwe (and all): https://github.com/dretzlaff/wicket-select2 thanks a lot. i'll provide feedback as soon as i have tweaked it work with 1.4. pls share that when you do, wanted to have a go but

Re: igor's select2 script

2012-05-09 Thread Emmanouil Batsis (Manos)
this is cool! Any chance it works with wicket 1.4.x? Manos - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: reload model each time

2012-04-14 Thread Emmanouil Batsis (Manos)
On 04/14/2012 03:03 PM, Christoph Leiter wrote: Here's a good article about EntityModel, which does what you want: http://wicketinaction.com/2008/09/building-a-smart-entitymodel/ Sorry for jumping in but wanted to make sure I get this right. In the example given above, does it make sense to

Handling nested form submission on enter

2012-04-11 Thread Emmanouil Batsis (Manos)
I have a nested form that works as expected when it's submit button (an IndicatingAjaxButton) is pressed but not when the user presses the enter key when one of it's form fields is focused. Is it possible to capture this enter key press to trigger the nested form's submit instead? Manos

Re: Handling nested form submission on enter

2012-04-11 Thread Emmanouil Batsis (Manos)
On 04/11/2012 04:14 PM, Andrea Del Bene wrote: already tried form setDefaultButton method (see JavaDoc)? Thanks, I just did and the flow is the one desired, but for some reason the nested form field models are not updated with the field inputs when the submit buttons onSubmit() is called. Is

Re: Handling nested form submission on enter

2012-04-11 Thread Emmanouil Batsis (Manos)
On 04/11/2012 05:39 PM, Andrea Del Bene wrote: Well, I couldn't say why it doesn't work. Can you post some code of your nested forms? Sort of found what the problem is but have no clue on how to solve it. Pressing enter in one of the nested forms submits the last nested form in the page.

Re: Handling nested form submission on enter

2012-04-11 Thread Emmanouil Batsis (Manos)
On 04/11/2012 07:53 PM, Andrea Del Bene wrote: It's like if JavaScript can't tell apart a form from another. Can you check the HTML generated for your page and see if forms have an unique id? Checked, the IDs are unique. I couldn't figure out what the actual problem is so, to bypass it, I

HOWTO to only skip required validators

2012-03-31 Thread Emmanouil Batsis (Manos)
I have a usecase for saving a draft of a form before actually submitting it. I'm trying to figure out how to only skip the required validators using a save draft submit button in my form. Disabling default form processing sounds like using a bazooka to shoot down a fly considering my form

Re: Wicket/Spring Boilerplate

2012-03-01 Thread Emmanouil Batsis (Manos)
On 03/01/2012 02:07 AM, Michael Laccetti wrote: Just a quick note to folks that may be interested that I've created a Maven archetype that ties together Wicket 1.5 and Spring 3.1, along with Hibernate 4.1/JPA 2 and logback. It is purely annotation driven, and has no XML configuration files.

Re: Howto go for editable grid with add/remove row in wicket 1.4?

2012-02-20 Thread Emmanouil Batsis (Manos)
On 02/20/2012 03:49 AM, Emmanouil Batsis (Manos) wrote: On 02/19/2012 10:56 PM, Jorge Rodrigez wrote: You just need to add/remove an item to your data source. Next time you rerender the grid it will show/hide the added/removed Any custom datasource examples out there? Essentially I'd like

Howto go for editable grid with add/remove row in wicket 1.4?

2012-02-19 Thread Emmanouil Batsis (Manos)
Subject says it all... currently using inmethod from wicketstuff but there is no add/remove row in the 1.4.x versions. Manos - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Howto go for editable grid with add/remove row in wicket 1.4?

2012-02-19 Thread Emmanouil Batsis (Manos)
On 02/19/2012 10:56 PM, Jorge Rodrigez wrote: You just need to add/remove an item to your data source. Next time you rerender the grid it will show/hide the added/removed Any custom datasource examples out there? Essentially I'd like to bind the grid to a POJO collection member. Manos

How to render a Tree with a preselected node?

2011-12-09 Thread Emmanouil Batsis (Manos)
Looking around the APIs and all, but haven't figured out how to have a LabelTree rendered with the tree expanded properly to point to a preselected node. Manos - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: How to render a Tree with a preselected node?

2011-12-09 Thread Emmanouil Batsis (Manos)
On 12/09/2011 03:30 PM, Emmanouil Batsis (Manos) wrote: Looking around the APIs and all, but haven't figured out how to have a LabelTree rendered with the tr To answer my own email, it's all about // select the apropriate node, in my case a // DefaultMutableTreeNode tree.getTreeState

Re: Tree selection form component?

2011-12-09 Thread Emmanouil Batsis (Manos)
On 12/06/2011 02:55 PM, Emmanouil Batsis (Manos) wrote: On 11/19/2011 05:09 PM, Emmanouil Batsis (Manos) wrote: I was wondering if anyone has implemented a reusable component for handling hierarchical/dependent dropdowns as I'm thinking of having a go at it... I hijacked the thread

Tree selection form component? (was: Re: Component for chained/dependent drop downs?)

2011-12-06 Thread Emmanouil Batsis (Manos)
On 11/19/2011 05:09 PM, Emmanouil Batsis (Manos) wrote: I was wondering if anyone has implemented a reusable component for handling hierarchical/dependent dropdowns as I'm thinking of having a go at it... I hijacked the thread as it seems relevant. At first I was after a component that adds

Component for chained/dependent drop downs? (was: Re: Chained dropdowns)

2011-11-19 Thread Emmanouil Batsis (Manos)
On Fri, Nov 18, 2011 at 1:36 PM, Titonjyt...@gmail.com wrote: Hi, I'm trying to connect three drowpdowns. For example. combo1: Country combo2: Province combo3: City I'm updating dropdowns by Ajax with AjaxFormComponentUpdatingBehavior(onChange) and it works ok. But if you choose a

Re: Anyone using wicket-velocity 1.4.16 on java 1.5?

2011-04-02 Thread Emmanouil Batsis
Quoting Emmanouil Batsis ma...@abiss.gr: Quoting James Carman ja...@carmanconsulting.com: Quickstart? Bear with me; are you asking for a minimal testcase based on the archetype or whether i'm actually using it (or something else)? In anycase, it would lead me into figuring out my

Re: [ANNOUNCE] Wicketopia 0.9 Released...

2011-04-01 Thread Emmanouil Batsis
I have to agree with Maarten on points; without more documentation, prospective users will just dismiss this shortly after visitinga couple of webpages. Some questions: - Does this offer static scaffolding (e.g. build time) or runtime? Are templating mechanisms available? - What are

Anyone using wicket-velocity 1.4.16 on java 1.5?

2011-04-01 Thread Emmanouil Batsis
Stuck on a win machine, but checked out my classpath, even deleted my maven repo .m2/repository/org/apache/wicket to verify what i'm seeing in my pom but no dice. I'm using 1.4.16 or wicket-xx including velocity. This code: // START SNIPPET, next line is 51 VelocityPanel panel = new

Re: Anyone using wicket-velocity 1.4.16 on java 1.5?

2011-04-01 Thread Emmanouil Batsis
Quoting James Carman ja...@carmanconsulting.com: Quickstart? Bear with me; are you asking for a minimal testcase based on the archetype or whether i'm actually using it (or something else)? Cheers, Manos - To

Re: wicket-ajax.js header contribution with script that includes a less than character

2011-02-03 Thread Emmanouil Batsis
Not sure i understand the issue but I would suggest escaping that to lt; although script contribs could just as well offer an option to wrap a CDATA like script // ![CDATA[ //script code // ]] /script Manos Quoting Igor Vaynberg igor.vaynb...@gmail.com: wicket should do this for you.

Re: Browser loading absolute image paths

2011-01-15 Thread Emmanouil Batsis
Quoting Henrique Boregio hbore...@gmail.com: img wicket:id=image src=F:\workspace\project\pictures\2\profile.jpg/ That will never work. You *might* have a chance using the file: URI scheme like img wicket:id=image src=file:///F:/workspace/project/pictures/2/profile.jpg/ but,

Re: Should Logger classes be transient?

2011-01-15 Thread Emmanouil Batsis
Quoting Alexandros Karypidis akary...@yahoo.gr: I'm using SLF4J and was wondering whether pages should declare: private transient final Logger log = LoggerFactory .getLogger(SomePage.class); as members. I guess that accessing a page that was saved and then re-loaded would

Make a Palette option mandatory?

2010-10-27 Thread Emmanouil Batsis (Manos)
I'm probably missing the obvious so any help would be appreciated. Manos - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Job opportunity in Tahiti

2010-09-24 Thread Emmanouil Batsis (Manos)
On 09/24/2010 10:35 PM, Gabriel Landon wrote: Our client wants a CMS, so we have chosen to use Liferay. Liferay is a java portal, so we need to use portlets with it. That as simple as that. When we don't need a CMS, we just do simple wicket application. Not that it's any of my business, but

Message resources in database?

2010-09-18 Thread Emmanouil Batsis (Manos)
How would you implement runtime translation and/or addition of messages by users? Couldn't find any RDBMS-based IStringResourceLoaders to look at or extend :-/ Manos - To unsubscribe, e-mail:

Looking for inspiration/suggestions

2010-09-16 Thread Emmanouil Batsis (Manos)
Consider the task of building a wicket-based UI that allows users to map properties between entities (e.g. a mapping between InventoryAsset to SupportTicket properties), how would you do it? Some considerations are datatype mappings but that may or may not be relevant to the wicket layer.

member variables, thread safety

2010-08-02 Thread Emmanouil Batsis
Apologies for the dumb question but I'm rather new to wicket and was wondering if it is safe to use member variables within components (i.e. compared to servlets, struts1 actions etc). Many thanks, Manos -- Manos Batsis, Chief Technologist ___ _/ /_ (_)_