Re: Feedback and field validation

2010-03-25 Thread alexander.elsholz
get marked rendered once they are displayed. On Wed, Mar 24, 2010 at 6:39 PM, alexander.elsholz alexander.elsh...@widas.de wrote: hi anna, feedback-messages will clear after the request processing. build a visitor that checks the feedbackmassges of every component. your components

Re: Feedback and field validation

2010-03-24 Thread alexander.elsholz
hi anna, feedback-messages will clear after the request processing. build a visitor that checks the feedbackmassges of every component. your components have to hold the messages when error, info and warn will called. clear on successful validate. alex Anna Simbirtsev wrote: Hi, I

Re: DojoContextualMenuBehavior problem

2009-06-15 Thread alexander.elsholz
Hi, i think its the same problem like here: http://www.nabble.com/DOJO-Menu-Items-and-AJAX-Target-Components-td24020833.html i opened a call: http://wicketstuff.org/jira/browse/DOJO-92 alex -- View this message in context:

Wicket tests without FormTester

2009-03-19 Thread alexander.elsholz
Hi, exists a possibility to test, for example a dropdownchoice without formtester? my ddc isn't placed on a form, so i actually don't know how to test this component - how can i simulate the userinput? i don't want to put this component i a form, only for test. the value is updated via

Re: Override ResourceModel

2009-03-17 Thread alexander.elsholz
the translated text, but without the static extra String. if i set a breakpoint in the getObject-method, the breakpoint was never achieved. alex igor.vaynberg wrote: what does the label output? -igor On Mon, Mar 16, 2009 at 2:52 PM, alexander.elsholz alexander.elsh...@widas.de wrote

wicket tests enabled

2009-03-17 Thread alexander.elsholz
hi, what's the best way to test enabling/disabling of components? i tried: assertFalse(tester.getComponentFromLastRenderedPage(PATH_XYZ).isEnabled()); and it seems work. is it the right way to test java-changed-attributes? thanks alex -- View this message in context:

Override ResourceModel

2009-03-16 Thread alexander.elsholz
Hi, i want to append some static code, after calling ressourcemodel.getobject to the localized String. so i override this method, but i think this method was never called - why? is there an other opprtunity to append some static code after localization? thanks alex -- View this message in

Re: Override ResourceModel

2009-03-16 Thread alexander.elsholz
://www.wickettraining.com On Mon, Mar 16, 2009 at 4:17 AM, alexander.elsholz alexander.elsh...@widas.de wrote: Hi, i want to append some static code, after calling ressourcemodel.getobject to the localized String. so i override this method, but i think this method was never called

use AjaxFormComponentUpdatingBehavior for ENTER-handling

2009-03-12 Thread alexander.elsholz
hi, here http://www.nabble.com/Form-Enter-Key-Problem-td14408121.html#a18785052 Juan Gabriel Arias described how to submit a field on enter. how can i combine this with AjaxFormComponentUpdatingBehavior, where getEventHandler() is final? thanks alex -- View this message in context:

Re: Wicket Focus Policy

2009-02-25 Thread alexander.elsholz
? Scott On Mon, Feb 23, 2009 at 10:20 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Here are some more scientific thoughts about it: http://www.mail-archive.com/wicket-u...@lists.sourceforge.net/msg26372.html 2009/2/23 alexander.elsholz alexander.elsh...@widas.de: hi

Wicket Focus Policy

2009-02-23 Thread alexander.elsholz
Hi, had somebody implement a focuspolicy in wicket such as swings focustraversalpolicy? the policy should be analyzed in browser by default(a sorted list of wicket-ids) because of performance. In some cases we need business-code to evaluate next component. in this case we pass the

Re: Wicket Focus Policy

2009-02-23 Thread alexander.elsholz
play with the index range 0-32767. i try to implement a panel-based strategy and present the result in this list. thanks alex Martin Makundi wrote: Do yu mean really focus or html tabindex? ** Martin 2009/2/23 alexander.elsholz alexander.elsh...@widas.de: Hi, had somebody implement

FormTester doesn't call the submit method

2009-02-05 Thread alexander.elsholz
Hi, i've a simple form with only one button. i wan't to test the submit method of button, so i call formtester.submit(). validation is executed and alsotester.assertNoErrorMessage(); is called. but the submit method of button wasn't called. thanks alex -- View this message in context:

best way - back link

2009-02-04 Thread alexander.elsholz
Hi, i've implemented a workspace application with many context-informations, selected tabs and so on. the controller holds the state in different member vars. for some actions the user must link to another page. after submitting this page or cancelling i want to relay the user to his last state

Re: LayoutManager in Wicket

2009-01-14 Thread alexander.elsholz
already implemented in some flavor in wicket-rad and Wicket Web Beans. in fact, now that you phrase it this way i'm thinking of changing my package naming from view to layout. it's more accurate. jon alexander.elsholz wrote: Hi, i read some discussions about using

Re: LayoutManager in Wicket

2009-01-14 Thread alexander.elsholz
yes, i'm happy to agree to review your book. Jonathan Locke wrote: yes, but it would still be a similar approach. wow is not public yet, but you could be a reviewer of my book if you want (when i'm ready, which may be a few weeks to months). alexander.elsholz wrote: hi jon, i

LayoutManager in Wicket

2009-01-13 Thread alexander.elsholz
Hi, i read some discussions about using layoutmanagers in wicket like swing or gwt. http://best-practice-software-engineering.blogspot.com/2007/08/tech-wicked-wicket.html i agree with some arguments like loosing flexibility in layouting, the majority of them tend to look the same or verbosing

RE: Include a jsp in my wicket-page - PageExpired

2008-12-11 Thread alexander.elsholz
containing that form. But I rather ask you, why do you want to use JSPs within the same application that uses Wicket? -Original Message- From: alexander.elsholz [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2008 10:55 AM To: users@wicket.apache.org Subject: Include a jsp in my

Re: Asynchron push/update/redirect

2008-12-10 Thread alexander.elsholz
Michael Sparer wrote: take a look at wicketstuff-push or wicketstuff-dojo-1.1. (which also includes cometd that provides your desired push behaviour) regards, Michael alexander.elsholz wrote: Hi, i need a possibility to refresh parts of view, when data on the server changed

Modal Dialog with Form Reloading the page will cause the modal window to disappear

2008-12-10 Thread alexander.elsholz
Hi, i put a form on a modal dialog and expected to get the standard recycle (when validators failed, the submit method of the button of the dialog will not performed). that works, but: 1) the dialog closed, after committing this message: Reloading the page will cause the modal window to

IFrame in Panel?

2008-12-09 Thread alexander.elsholz
Hi, i want to display a nother web-application (plain jsp) included in my webpage. actually i use iframes. but i have two problems with iframes: 1. how can i pass parameters to the subpages? RequestCycle.get().setResponsePage(new IFramePage(params)); 2. how can i display an

TabbedPanel#addTab

2008-12-08 Thread alexander.elsholz
Hi, exists a possibility to add a new tab to an ajax-tabbed-pane without replacing existing instance? the reason, because of i wont replace my tab is to hold the component-state of the other tabs. regards alex -- View this message in context:

Re: TabbedPanel#addTab

2008-12-08 Thread alexander.elsholz
can add a new or replace existing tabs. Just add the MultiTabbedPanel to an ajaxrequesttarget to update the tabs. alexander.elsholz wrote: Hi, exists a possibility to add a new tab to an ajax-tabbed-pane without replacing existing instance? the reason, because of i wont replace my tab

Re: TabbedPanel#addTab

2008-12-08 Thread alexander.elsholz
hi, thanks a lot. regards alex Thies Edeling wrote: I don't understand your question :) the tab list is just a list with AbstractTabs. Retrieve the list (getTabs() on TabbedPanel), add a new AbstractTab et voila. alexander.elsholz wrote: hi, i don't understand your solution. int

Non-Modal-Popop with DOJO-CONTEXT-Menu

2008-12-04 Thread alexander.elsholz
Hi, i want to create a new browser-window from a wicket-dojo popup menu (non modal!). the popup is a pure javascript solution. in wicket there is a possibility using popupsettings within a link. a) is it possible to switch the request to a new browser-window? (RequestCycle.get()) b) exist