Re: CheckGroup question

2012-06-10 Thread Jürgen Lind
Ah, thanks. Simply using ReuseIfModelsEqualStrategy did it... J. On 10.06.2012 13:48, Sven Meier wrote: DataView has an IItemReuseStrategy. Sven Jürgen Lind schrieb: Thanks for the hint. Unfortunately, I was incorrect in my initial post: it is not a ListView but a DataView I am using

Re: CheckGroup question

2012-06-10 Thread Jürgen Lind
Thanks for the hint. Unfortunately, I was incorrect in my initial post: it is not a ListView but a DataView I am using within the form. Is there a similar mechanism for this case? J. On 10.06.2012 12:40, Sven Meier wrote: See ListView#setReuseItems() Jürgen Lind schrieb: Ok, I&#

Re: CheckGroup question

2012-06-10 Thread Jürgen Lind
ering. However, I still wonder if that is the way to go or just weird hack which solves the problem more or less by coincidence. Any help would be appreciated. J. On 10.06.2012 12:21, Jürgen Lind wrote: Hi, I have a little problem in getting a CheckGroup to work... The setup is as follows: the pag

CheckGroup question

2012-06-10 Thread Jürgen Lind
Hi, I have a little problem in getting a CheckGroup to work... The setup is as follows: the page has a Form with a CheckGroup that contains a ListView where each list item adds a Check component - giving me a "bulk select" mechanism. Now, everything works great if the form is submitted success

Re: Component-specific javascript in Ajax-Calls

2012-06-04 Thread Jürgen Lind
olved tickets in Wicket's Jira are related to this. J. On 04.06.2012 21:10, Martin Grigorov wrote: On Mon, Jun 4, 2012 at 10:01 PM, Jürgen Lind wrote: Thomas, thanks for this hint, didn't know about that... So the script is executed every time the component is updated in an ajax ca

Re: Component-specific javascript in Ajax-Calls

2012-06-04 Thread Jürgen Lind
Thanks Martin, maybe I should have asked before trying to invent my own stuff... Anyway, developing a new wicket tag was some kind of fun as well... J. On 04.06.2012 21:10, Martin Grigorov wrote: On Mon, Jun 4, 2012 at 10:01 PM, Jürgen Lind wrote: Thomas, thanks for this hint, didn't

Re: Component-specific javascript in Ajax-Calls

2012-06-04 Thread Jürgen Lind
ponse response) { response.renderOnDomReadyJavaScript( "$('#" + getMarkupId() + " .ttr').tipTip({defaultPosition: 'right'});"); } } -Tom On 04.06.2012, 19:21 Jürgen Lind wrote: […] $(document).ready(funct

Re: Single page wicket app

2012-05-15 Thread Jürgen Lind
What do you mean by "large"? Many users or many dialogs/components? I have developed three more or less (which means that a new page was only needed when basically the entire structure changed - which occured seldomly) single page apps with wicket and I have not run into real problems. But as M

Re: Force child component enabled

2012-05-10 Thread Jürgen Lind
shown in a disabled panel. File a ticket with a quickstart with the code from your earlier mail and I'll try to find what is the problem. On Thu, May 10, 2012 at 10:16 AM, Jürgen Lind wrote: Since no further replies to this issue came up, the question remains whether this is "works as d

Re: Force child component enabled

2012-05-10 Thread Jürgen Lind
that maybe overriding that method could achieve the intended behavior... J. On 09.05.2012 16:36, Jürgen Lind wrote: Ok, I stripped down everything to a very basic setup that should work according to Martins suggestions and the wicket documentation. Any ideas why canCallListenerInterface is ne

Re: Force child component enabled

2012-05-09 Thread Jürgen Lind
public void onClick(AjaxRequestTarget target) { System.out.println("clicked..."); } }; container.add(link); this.add(container); } } Click me! On 09.05.2012 14:29, Jürgen Lind wrote: Hi Martin, thanks for the hint, unfortunatly, it does not work :-( I

Re: Force child component enabled

2012-05-09 Thread Jürgen Lind
is needed to not render the link as disabled. The second is needed to be able to actually execute the links logic. The second method is added in 1.5.x. On Wed, May 9, 2012 at 1:47 PM, Jürgen Lind wrote: Hi Martin, that was my initial approach. However, I would like the collapsible panels to

Re: Force child component enabled

2012-05-09 Thread Jürgen Lind
, May 9, 2012 at 12:06 PM, Jürgen Lind wrote: Hi, I have a little problem in my application and maybe someone has an idea how to solve it: I have a complex form that is structured using a custom collapsible AJAX-panel to show/hide certain parts of the form. Now, if a user does not have the

Force child component enabled

2012-05-09 Thread Jürgen Lind
Hi, I have a little problem in my application and maybe someone has an idea how to solve it: I have a complex form that is structured using a custom collapsible AJAX-panel to show/hide certain parts of the form. Now, if a user does not have the write permission for the form, the form is disabl

Re: How to override annotation @SpringBean

2012-04-29 Thread Jürgen Lind
Hi, in case like this where I would like to reuse a custom component in different contexts, I usually make the component abstract and have the using components implement an abstract method such as "getService". This way, I can pass in different beans as needed... Maybe that helps, Jürgen On

Re: Stateless Page Question

2012-04-27 Thread Jürgen Lind
s not have a session, creates one. Use getSession(false) instead. To keep the page stateless you may use wicket-devutils StatelessChecker in Dev mode. On Fri, Apr 27, 2012 at 10:41 AM, Jürgen Lind wrote: Hi, I'm a bit confused with stateless pages and maybe somebody can shed light on this

Stateless Page Question

2012-04-27 Thread Jürgen Lind
Hi, I'm a bit confused with stateless pages and maybe somebody can shed light on this... I have a (currently) empty mounted WebPage that is later supposed to serve as a health-check page and will thus be called frequently. Now, if a do a simple wget with the page URL, my RequestCycleListener tel

Re: setResponsePage in ajax call

2012-04-26 Thread Jürgen Lind
Hi Martin, thnaks for your reply and the explanation, I have now switched to the class-based variant and it works like it should. J. On 26.04.2012 12:05, Martin Grigorov wrote: On Thu, Apr 26, 2012 at 12:50 PM, Jürgen Lind wrote: Thanks for the quick responses... First of all the code

Re: setResponsePage in ajax call

2012-04-26 Thread Jürgen Lind
quot; Please try with 1.5.5 and create a ticket with a quickstart if it still fails for you. On Thu, Apr 26, 2012 at 12:05 PM, Jürgen Lind wrote: Hi, I have difficulties in using the setResponsePage in ajax call as Wicket seems to direct the call to a relative URL. As a result, the request is mad

setResponsePage in ajax call

2012-04-26 Thread Jürgen Lind
Hi, I have difficulties in using the setResponsePage in ajax call as Wicket seems to direct the call to a relative URL. As a result, the request is made to the root context an that gives me a 404. The scenario is as follows: I have a login form and would like to provide user feedback on submi

Re: AuthorizationStrategy design question

2012-04-23 Thread Jürgen Lind
meter while even the component is available: https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/Application.java#L280 On Sat, Apr 21, 2012 at 10:51 AM, Jürgen Lind wrote: Hi, I am looking for ideas on how to implement a context-aware AuthorizationStrategy. T

AuthorizationStrategy design question

2012-04-21 Thread Jürgen Lind
Hi, I am looking for ideas on how to implement a context-aware AuthorizationStrategy. This means that I need a way to decided whether a certain self-written component can be instantiated in a particular context or not. For example, the "filter" component may be show to a user with a certain pe

Re: Message piggybacking vs polling

2012-04-18 Thread Jürgen Lind
bus mechanism of 1.5 for more information Martijn On Wed, Apr 18, 2012 at 9:08 AM, Jürgen Lind wrote: Hi, I am currently evaluating my options for (semi) pro-active messages to the user. The first idea was to use an AjaxSelfUpdatingTimerBehavior to poll for new messages for the user. Since this

Message piggybacking vs polling

2012-04-18 Thread Jürgen Lind
Hi, I am currently evaluating my options for (semi) pro-active messages to the user. The first idea was to use an AjaxSelfUpdatingTimerBehavior to poll for new messages for the user. Since this might put quite some unnecessary load on the server, I was thinking about using the current request

Re: common data picker component

2012-04-05 Thread Jürgen Lind
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org Mit freundlichen Grüßen, Jürgen Lind -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4

Re: Access current request in IAuthorizationStrategy

2012-03-25 Thread Jürgen Lind
Thanks, I've been looking through some classes to find such a method but I missed on that one... J. On 26.03.2012 08:33, Igor Vaynberg wrote: RequestCycle.get() -igor On Sun, Mar 25, 2012 at 11:14 PM, Jürgen Lind wrote: Hi, I need a way to decide wether a certain page can be opend

Access current request in IAuthorizationStrategy

2012-03-25 Thread Jürgen Lind
Hi, I need a way to decide wether a certain page can be opend based on the URL it was called with. Therefore, I need access to the current request in the 'isInstantiationAuthorized' method of IAuthorizationStrategy. Is there a way to get access to the current request there? Thanks, J. ---

Solved: Mysterious application crash

2012-03-21 Thread Jürgen Lind
omes unusable across different users. Maybe one of the developers could provide an explanation as I am quite curious to know what was going on... Cheers, J. On 21.03.2012 14:24, Jürgen Lind wrote: Hi, I've run into a very odd situation and I have no idea, how to find out what is going on... Th

Mysterious application crash

2012-03-21 Thread Jürgen Lind
Hi, I've run into a very odd situation and I have no idea, how to find out what is going on... The situation is as follows: 1. I have a base page that contains some markup and components. 2. I have a second page, that extends the base page but does not add any markup or components, i.e the H

Re: Eclipse, Wicket 1.5 and Jrebel

2012-03-05 Thread Jürgen Lind
false true On Mon, Mar 5, 2012 at 2:16 PM, Jürgen Lind wrote: Hi Christoph, maybe I was a bit too quick in assuming that Jrebel was the culprit... I went back to 1.5

Re: Eclipse, Wicket 1.5 and Jrebel

2012-03-05 Thread Jürgen Lind
Hi Christoph, maybe I was a bit too quick in assuming that Jrebel was the culprit... I went back to 1.5.3 an since then, the problem has disappeared. Let's hope it stays that way... Thank you again for the hint. J. On 04.03.2012 11:46, Jürgen Lind wrote: Thanks for the hint, but I d

Re: Eclipse, Wicket 1.5 and Jrebel

2012-03-04 Thread Jürgen Lind
locked resource. I am also in contact with the Jrebel guys, I just wanted to know if somebody else has a similar problem. J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web

Re: Eclipse, Wicket 1.5 and Jrebel

2012-03-04 Thread Jürgen Lind
wrote: Hi, do you use 1.5.4 with package resources? There's a bug that causes locked resources: https://issues.apache.org/jira/browse/WICKET-4359 Until 1.5.5 is released you can use 1.5.3, which is not affected by this bug. Christoph On 04.03.2012 10:29, Jürgen Lind wrote: Hi, I was

Eclipse, Wicket 1.5 and Jrebel

2012-03-04 Thread Jürgen Lind
somebody else has a similar problem. J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Registergericht der iteratec GmbH: München HRB 113 519 Geschäftsführer

Re: Resource Caching in 1.5.

2012-02-24 Thread Jürgen Lind
resource references should not have anticache appended, please create a quickstart. -igor On Fri, Feb 24, 2012 at 6:39 AM, Jürgen Lind wrote: Hi, my migration to Wicket 1.5. is progressing, but there are still some unresolved issues. Currently, I am trying to prevent wicket from adding antiCache

Resource Caching in 1.5.

2012-02-24 Thread Jürgen Lind
, so I added getResourceSettings().setCachingStrategy(NoOpResourceCachingStrategy.INSTANCE); to my application's init method. Unfortunately, that did not work either. Any suggestions how to get around this problem? J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 6145

Re: Border-Component Problem in Migration to 1.5

2012-02-24 Thread Jürgen Lind
Ok, I am going to answer myself on that one: changing this.add(popupHolder); to this.addToBorder(popupHolder); dis it. I had read the migration guide and the Javadoc several times but just did not understand it (correctly)... J. On 24.02.2012 14:00, Jürgen Lind wrote: Hi, I've just

Border-Component Problem in Migration to 1.5

2012-02-24 Thread Jürgen Lind
} I have no idea what could cause the problem, the component ordering seems to be ok from my point of view and, as I said before, the code works just fine in 1.4.12. Cheers, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89

Re: Component specific JavaScript

2012-02-19 Thread Jürgen Lind
k for Wicket 1.4? Doubful, the event system was added in 1.5 - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org Mit freundlichen Grüßen, Jürgen

Re: Component specific JavaScript

2012-02-19 Thread Jürgen Lind
x27;, '1px solid red'); }); }); -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Registergericht der iteratec GmbH: München HRB 113 519 Geschäftsführer: Klau

Re: Component specific JavaScript

2012-02-19 Thread Jürgen Lind
od. :) The first argument of the event handler is the added element. You can simply use it as is or pass it to $() to do jQuery magic just for the relevant part. Christoph On 19.02.2012 13:18, Jürgen Lind wrote: Christoph, I have use yout approach (jQuery + css-class) for some time now as wel

Re: Component specific JavaScript

2012-02-19 Thread Jürgen Lind
ts of the page. J. On 19.02.2012 13:02, Christoph Leiter wrote: On 18.02.2012 17:46, Jürgen Lind wrote: thank you for your reply, I did not know that such a method exists (does it for 1.4 or is this already Wicket 1.5). An secondly: are these handlers fired on a ajax update of an existing DOM El

Re: Component specific JavaScript

2012-02-19 Thread Jürgen Lind
(IHeaderResponse) IHeaderResponse#renderOnDomReadyJavascript() methods are available in 1.4.x. What exactly you think is not available there ? From: Jürgen Lind To: "users@wicket.apache.org" Sent: Sunday, 19 February 2012, 12:08 Subject: Re: Component specific

Re: Component specific JavaScript

2012-02-19 Thread Jürgen Lind
that gets called when wicket creates a new element in the DOM: Wicket.Event.subscribe('/dom/**node/added', function(element) { // do stuff }); You can also use the '/dom/node/removing' channel. Hope this helps. Christoph Jürgen Lind (2012-02-18 16:55): Hi, I

Re: Component specific JavaScript

2012-02-18 Thread Jürgen Lind
added', function(element) { // do stuff }); You can also use the '/dom/node/removing' channel. Hope this helps. Christoph Jürgen Lind (2012-02-18 16:55): Hi, I was wondering if there is any kind of best practice to add specific javascript to a component. I often have the

Component specific JavaScript

2012-02-18 Thread Jürgen Lind
part of an Ajax-Request triggered by another component. I would like to have one place where I can put the Javascript and be shure, it is run every time... Cheers, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10

Re: Slow rendering

2012-02-18 Thread Jürgen Lind
ng all the nodes ahead of time? shouldnt it render them lazily as they are expanded? -igor On Thu, Feb 16, 2012 at 10:50 AM, Jürgen Lind wrote: Hi there, I am currently encountering a problem that I don't know how to attack... We have developed an application that uses the Tree-Component t

Re: Slow rendering

2012-02-16 Thread Jürgen Lind
. On 16.02.2012 21:13, Igor Vaynberg wrote: why is your tree rendering all the nodes ahead of time? shouldnt it render them lazily as they are expanded? -igor On Thu, Feb 16, 2012 at 10:50 AM, Jürgen Lind wrote: Hi there, I am currently encountering a problem that I don't know how to a

Slow rendering

2012-02-16 Thread Jürgen Lind
age? Kind Regards, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Registergericht der iteratec GmbH: München HRB 113 519 Geschäftsführer: Klaus Eberhardt, M

Re: Increasing session size

2009-01-30 Thread Jürgen Lind
until the default 10MB i already said that. On Fri, Jan 30, 2009 at 09:58, Jürgen Lind wrote: Thank you for pointing me to the means to tune the DiskPagestore size. The only question that remains is whether it is normal that it keeps growing and by what extend. J. Johan Compagner wrote

Re: Increasing session size

2009-01-30 Thread Jürgen Lind
(), (int)Bytes.megabytes(100).bytes(), 50); } (10MB for one pagemap and 100MB for a complete session over multiply pagemaps) On Fri, Jan 30, 2009 at 09:44, Jürgen Lind wrote: Probably I was a bit unclear, I was talking about the serialized session on disk. Does the "should not grow&qu

Re: Increasing session size

2009-01-30 Thread Jürgen Lind
9, 2009 at 11:20 PM, Jürgen Lind wrote: One more thing: just as a rule of thumb, what would be a reasonable amount of data that gets added to the session for a single request? 20k? 100k? Regards, J. Michael Sparer wrote: I took a cursory glance over your code and saw item.add(new Link(&qu

Increasing session size

2009-01-29 Thread Jürgen Lind
model-classes and go spotting nonserializable exceptions until they don't ocurr anymore. hope that helps a bit - and thanks for beating leverkusen in 2000 ;-) regards, Michael Jürgen Lind-2 wrote: After some twiddling I found that the PagingNavigator seems to be the culprit. If I l

Re: DataView and increasing session size

2009-01-29 Thread Jürgen Lind
thanks for beating leverkusen in 2000 ;-) regards, Michael Jürgen Lind-2 wrote: After some twiddling I found that the PagingNavigator seems to be the culprit. If I leave it out, the session grows only moderately, when I put it in, the domain objects end up in the session... Anyway here is the code:

Re: DataView and increasing session size

2009-01-29 Thread Jürgen Lind
tragBA = auftragBA; } @Override protected Object load() { return this.auftragBA.findAuftragByAuftragsId(this.id); } @Override protected void onDetach() { super.onDetach(); } } Michael Sparer wrote: > the objects shouldn't be serialized into the session if you&#x

DataView and increasing session size

2009-01-29 Thread Jürgen Lind
the behavior that I would expect from the DataView or am I making some mistake here? Regards, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und

Re: Problem understanding LoadableDetachableModel and ListViews

2008-10-02 Thread Jürgen Lind
problem with your approach: you keep the object reference which means the object is serialized instead of being retrieved through a loadable detachable model. -igor On Thu, Oct 2, 2008 at 10:54 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Thanks for the explanation. Still, one questions r

Re: Problem understanding LoadableDetachableModel and ListViews

2008-10-02 Thread Jürgen Lind
onclick() -igor On Thu, Oct 2, 2008 at 10:10 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Igor Vaynberg wrote: your link works on the object and not on the model, instead add(new link("delete", item.getmodel()) { onclick() { delete(getmodelobject()); }}); Thank you for your qu

Re: Problem understanding LoadableDetachableModel and ListViews

2008-10-02 Thread Jürgen Lind
hat the problem that is solved using a custom ItemModel does not even occur. Or does that code prevent wicket from effectively detaching model objects and should thus be avoided? What would be the best practice here? J. -igor On Thu, Oct 2, 2008 at 9:04 AM, Jürgen Lind <[EMAIL PROTECTED]>

Problem understanding LoadableDetachableModel and ListViews

2008-10-02 Thread Jürgen Lind
o have a copy of the original list somewhere so that it can determine the list item on which the action was invoked before loading the underlying list. Can someone spot my mistake? Thanks, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse

Re: PageableListView and Detachable Models

2008-06-23 Thread Jürgen Lind
unaware of where or how its list is built. for database stuff i prefer using dataview, it has database semantics more closely built into it. -igor On Mon, Jun 23, 2008 at 1:55 PM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Hi, I am still a bit confused about one thing in the remark below: h

Re: PageableListView and Detachable Models

2008-06-23 Thread Jürgen Lind
listview can then retrieve the subset of this list (based on the current page and number of items needed) and do a select from foo where id in ( subset of id list ) query to retrieve the current window of data. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44

Re: PageableListView and Detachable Models

2008-06-23 Thread Jürgen Lind
list ) query to retrieve the current window of data. -igor On Mon, Jun 23, 2008 at 11:25 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Hi, I a currently a bit stuck in dealing with a PageableListView and a detachable model. I have build my own model that wraps a list of search results that

PageableListView and Detachable Models

2008-06-23 Thread Jürgen Lind
Is this observation correct? And how would I deal with a requirement as described above? Cheers, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Register

Re: wicket:head and HeaderContributors

2008-06-22 Thread Jürgen Lind
your help. J. -igor On Sun, Jun 22, 2008 at 10:10 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Ok, I understand your point and perhaps my whole setup is wrong. Here is my line of thinking: 1. I have a component that needs some Javascript. 2. The Javascript relies on an external library. 3

Re: wicket:head and HeaderContributors

2008-06-22 Thread Jürgen Lind
else will complain :) maybe they add a javascript library via wickethead and have a contributor spitting out some dynamic javascript. point is its a bad idea to depend on the ordering, whichever way it currently is. -igor On Sun, Jun 22, 2008 at 9:52 AM, Jürgen Lind <[EMAIL PROTECTED]>

wicket:head and HeaderContributors

2008-06-22 Thread Jürgen Lind
library within the wicket:head section. Regards, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Registergericht der iteratec GmbH: München HRB 113 519

Re: Session Creation Problem

2008-06-20 Thread Jürgen Lind
red errors. -igor On Fri, Jun 20, 2008 at 9:08 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Hi Igor, thanks for your support. Still I am a bit confused about the two types of sessions we are dealing with: as far as I understood, there is a wicket session that is stored within the http session

Re: Session Creation Problem

2008-06-20 Thread Jürgen Lind
0, 2008 at 8:43 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Hi, I tried using a stateless form for the Login page, but it seems that a new session is created before the page is even called. I inserted a stacktrack output in the constructor of my Wicket-Session (which happens to

Re: Session Creation Problem

2008-06-20 Thread Jürgen Lind
is created immediately by wicket. Any clues? J. Igor Vaynberg wrote: use a stateless form -igor On Fri, Jun 20, 2008 at 1:21 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Hi, I am facing a little annoyance in conjunction with session creation that I have been unable to fix until now: 1. My pages a

Session Creation Problem

2008-06-20 Thread Jürgen Lind
n the user opens the home page. How can I avoid this behavior? Kind Regards, Jürgen -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Registergericht der ite

Re: fieldlabel Component

2008-06-01 Thread Jürgen Lind
Thx, J. Martijn Dashorst wrote: label.add(new AttributeModifier("class", true, new Model() { public Object getObject() { return formcomponent.isValid() ? "" : "error"; }}); On Sun, Jun 1, 2008 at 8:05 PM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Hi, I am

fieldlabel Component

2008-06-01 Thread Jürgen Lind
. Can someone help me and point me to a solution for this problem? Regards, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Registergericht der iteratec GmbH

Re: Manipulate Component Markup before rendering

2008-05-31 Thread Jürgen Lind
it. Don't forget to call setRenderBodyOnly(true) on the label. Regards, Erik. Jürgen Lind wrote: Hi, I was wondering if there is some way to rewrite the component markup before it is rendered. My setting is as follows: 1. I have a component markup file like this someFun

Manipulate Component Markup before rendering

2008-05-30 Thread Jürgen Lind
replace it with a value that has been given to the component when the component was constructed. Is there any way to achieve this? Regards, J. -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching

Re: Multi-window application problem

2008-05-28 Thread Jürgen Lind
ic (and standard) Maven2 build environment. /Gwyn On Mon, May 26, 2008 at 8:00 AM, Jürgen Lind <[EMAIL PROTECTED]> wrote: Hi Igor, thanks for the reply. Unfortunately, I am not using quickstart for my test application. So which part of the application is best to be included in the tic

Multi-window application problem

2008-05-25 Thread Jürgen Lind
Is there anything apparent (or perhaps not so apparent) that I have been missing? Kind regards, Jürgen -- Dr. Jürgen Lind iteratec GmbHFon: +49 (0)89 614551-44 Inselkammerstrasse 4 Fax: +49 (0)89 614551-10 82008 Unterhaching Web: www.iteratec.de Sitz und Registergeri