Re: Adding jquery effects to paging navigator

2008-12-05 Thread Daniel Peters
});, topContainer.getMarkupId(), current); regards, Daniel Serkan Camurcuoglu wrote: How can I modify the onclick attribute of the links in the AjaxPagingNavigator? I override newPagingNavigationLink in my ajax paging navigator as shown below, but my javascript is not prepended. I want to add JQuery fadeout code

Graphs, Charts and Wicket

2008-11-16 Thread Yazbek, Daniel (Daniel)
Hi all, I'd like to put some simple bar graphs, pie graphs and possible line graphs into my wicket pages. Have any of you used a good framework that you can recommend, that also plays nicely with Wicket? Thanks! -Daniel.

Re: testing borders with WicketTester

2008-11-03 Thread Daniel Lipski
everything they need to render themselves. a border is meant to be embedded in a page or panel, not work independently. anyways, its really easy to create a generic panel to facilitate the testing of borders. -igor On Sun, Nov 2, 2008 at 2:57 AM, Daniel Lipski [EMAIL PROTECTED] wrote: Sorry

Re: testing borders with WicketTester

2008-11-02 Thread Daniel Lipski
with Wicket tester, regardles (i.e with empty) to border body. Does method Im looking for was not provided because of technical problems ? If so what is the simplest way to test border components (surrounding markup and components) with i.e empty body ? Regards Daniel Lipski igor.vaynberg wrote

Re: testing borders with WicketTester

2008-11-02 Thread Daniel Lipski
with some 'stub' (ie empty) body. jwcarman wrote: Are you sure you don't want to use markup inheritance rather than borders? On Sun, Nov 2, 2008 at 5:57 AM, Daniel Lipski [EMAIL PROTECTED] wrote: Sorry, but I dont get your point... What do you mean self contained (in terms of Wicket API) ? Im

Re: Moving from Tapestry to Wicket?

2008-10-30 Thread Daniel Frisk
I actually read your mail but I didn't quite get it, what is your main concern? It seems to me like Wicket would be a perfect fit to your four criteria. // Daniel jalbum.net On 2008-10-30, at 21:05, GK1971 wrote: Hi. I hope this email is appropriate for the forum - its my first time

Re: Domain Model as interfaces

2008-10-16 Thread Daniel Frisk
specific annotation). Just out of interest: do you really need to be able to easily switch between different persistence providers? // Daniel jalbum.net On 2008-10-16, at 03:00, Edgar Merino wrote: Hello, I couldn't find any other place to post this, so I'm doing it here, (it's related

Is it a wrong idea to implement injection on Models?

2008-10-15 Thread Daniel Jomphe
Hi, I read a few other threads related to this issue, but saw only technical means of freeing ourselves of the injection-is-only-for-Components limitation. Context After refactoring my code to make it so that the Guice injection no more happens on our Components but on our Models instead, I was

Re: Open Modal Dialog at specific position on screen (not center)

2008-10-15 Thread Daniel Frisk
Hi! You have to set the parameter wmode=opaque in your flash-object tag. That will make it a part of normal z-ordering. http://www.communitymx.com/content/source/E5141/wmodeopaque.htm // Daniel jalbum.net On 2008-10-14, at 22:42, groffhibbitz wrote: Hi, I'm running into a problem where

Re: Individual session timeout

2008-09-26 Thread Daniel Frisk
= (WebRequest) WebRequestCycle.get().getRequest(); return request.getHttpServletRequest().getSession(); } // Daniel jalbum.net On 2008-09-26, at 14:34, Nino Saturnino Martinez Vazquez Wael wrote: I mean the method on the ordinary java session http://java.sun.com/j2ee/sdk_1.3

Re: How to execute something on the very beginning of the request cycle

2008-09-17 Thread Daniel Freitas
I wouldn't classify filters as hacks. I like to think about them as primitive forms of AOP. Unless you think about AOPs as hacks :P... 2008/9/17 mmocnik [EMAIL PROTECTED] Thanks a lot, thats exactly what I was looking for. I overwrote newRequestCycle() in my Application to return my own

Re: session jumping?

2008-09-09 Thread Daniel Freitas
Could you enlighten us on what the problem was so we know what to avoid in our own implementations? Is that what Igor suggested? Your isVisible() method cheeking a static value? 2008/9/9 m_salman [EMAIL PROTECTED] My appologies. The problem was bad design and code on my part. -- View this

Re: Localization issue

2008-08-26 Thread Daniel Stoch
: @Override public final void onClick() { Locale locale = new Locale(en); this.getSession().setLocale(locale); setResponsePage(this.getPage()); } -- Daniel On Tue, Aug 26, 2008 at 9:56 PM

Re: PageParameter question

2008-08-15 Thread Daniel Freitas
Are you a 100% sure that ordering the parameters is the only way to go? And if yes are you sure you want to rely on the order the browser gives you? I think you should rethink your strategy. 2008/8/15 Mathias P.W Nilsson [EMAIL PROTECTED] I don't quite know what you mean. I must still pass

Re: [announce] Wicket in Action e-book has been published!

2008-08-13 Thread Daniel Freitas
Congrats. The book has been very helpful so far. 2008/8/13 David Leangen [EMAIL PROTECTED] Congratulations, guys! Thank you for all your hard work and sacrifice! -Original Message- From: Martijn Dashorst [mailto:[EMAIL PROTECTED] Sent: 14 August 2008 06:32 To: Wicket Users

Handling runtime exceptions in ajax request

2008-08-11 Thread Daniel Stoch
this (by extending AjaxRequestTarget and WebRequestCycleProcessor classes), but firstly I want to ask you is it any standard way to handle runtime exception within ajax request, without rendering another page? -- Daniel - To unsubscribe, e-mail

Re: AjaxButton does not work

2008-08-05 Thread Daniel Freitas
Do you have any form validation going on? If yes implement the onError method on the ajax button. Example: form.add(new AjaxButton(order) { @Override protected void onError(AjaxRequestTarget target, Form form) { //Ops we got some errors, show them in a

Re: help me please

2008-08-05 Thread Daniel Freitas
advanced and/or specific points since the information tends to be spread. That being said, Wicket in Action (book) is doing good for me. You can have access to it through manning early access program. Just type in Wicket in Action in google. Cheers, Daniel 2008/8/5 oriana [EMAIL PROTECTED] I

Re: help me please

2008-08-05 Thread Daniel Freitas
Damn that was the worst english email I have ever written. Sry. 2008/8/5 Daniel Freitas [EMAIL PROTECTED] I'm sure there are plenty of free materiel on the internet. But my personal experience is that to get a hold on a new framework (which you absolutely nothing a about) a good book

Re: How to make PagingNavigator work in Modal window?

2008-08-02 Thread Daniel Stoch
Use AjaxPagingNavigator. You cannot use normal (non-ajax) links inside a ModalWindow (like standard PagingNavigator does) because then the whole page is refreshed. -- Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Stack overflow when extending from page

2008-08-01 Thread Daniel Freitas
An issue has been created: https://issues.apache.org/jira/browse/WICKET-1765 Regards 2008/7/31 Igor Vaynberg [EMAIL PROTECTED] yeah, we should fix it. please file a jira issue. -igor On Thu, Jul 31, 2008 at 4:22 PM, Daniel Freitas [EMAIL PROTECTED] wrote: I typo got me to a stack

Re: Direclty using parent's compoundpropertymodel not possible ?

2008-07-31 Thread Daniel Freitas
I think I might be missing something here. I assume you don't create your components in the parent's constructor right? Or you call a different super constructor perhaps? Because java executes the parent constructor before calling a subclass constructor and for what I've seen so far in the

Where has DateLabel gone to

2008-07-31 Thread Daniel Freitas
. Is it an old feature that got removed or is it a new one present only in .1.4+? Regards, Daniel Freitas

Re: Where has DateLabel gone to

2008-07-31 Thread Daniel Freitas
I got it though maven thanks. 2008/7/31 Kai Mütz [EMAIL PROTECTED] Daniel Freitas mailto:[EMAIL PROTECTED] wrote: I'm reading Wicket in Action and I'm using Wicket 1.3.4. On the chapter about models, the author uses a DateLabel which he says can be found in the extensions project. Well

Re: Component#modelChanging and Component#modelChanged when IModel#setObject

2008-07-31 Thread Daniel Freitas
What would happen if more than one component uses the same model? Would we keep a list of components to notify? If that's the case why not just implement listeners instead, so then any class could listen to model changes. It's a nice idea except that IModel would have to be turned in to a class

Stack overflow when extending from page

2008-07-31 Thread Daniel Freitas
user friendly exception so we know we shouldn't extend Page directly? Just asking out of curiosity. Regards, Daniel Freitas

Re: Component#modelChanging and Component#modelChanged when IModel#setObject

2008-07-31 Thread Daniel Freitas
it. That sounds like fun... Regards, Daniel 2008/7/31 Hoover, William [EMAIL PROTECTED] That is true... it would require a proxy service in order to intercept the IModel#setObject calls. -Original Message- From: Daniel Freitas [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2008 7:02 PM

Using same navigator on top and bottom of page.

2008-07-28 Thread Daniel Freitas
istill displays page 3 as clickable). Regards, Daniel Freitas

Re: Using same navigator on top and bottom of page.

2008-07-28 Thread Daniel Freitas
With the following markup: div wicket:id=topNavigator/ div wicket:id=booksList div wicket:id=books class=book !-- list of books -- /div /div div

Re: Using same navigator on top and bottom of page.

2008-07-28 Thread Daniel Freitas
? -Igor On 7/28/08, Daniel Freitas [EMAIL PROTECTED] wrote: With the following markup: div wicket:id=topNavigator/ div wicket:id=booksList div wicket:id=books class=book !-- list of books

Re: Using same navigator on top and bottom of page.

2008-07-28 Thread Daniel Freitas
I meant the wicket:id (which is not an html id right?). Anyways, I will just keep that in mind. Two components work as expected. 2008/7/28 Igor Vaynberg [EMAIL PROTECTED] two html elements cannot have the same id within the same html document... -igor On Mon, Jul 28, 2008 at 1:55 PM, Daniel

Re: Using same navigator on top and bottom of page.

2008-07-28 Thread Daniel Freitas
BTW. I'm trying to customize the PagingNavigator. If I come up with a good way to do it, how can I contribute to the project? Basically, I will try to let the user choose images or text for the first, previous, next and last links. Regards, 2008/7/28 Daniel Freitas [EMAIL PROTECTED] I meant

Re: Using same navigator on top and bottom of page.

2008-07-28 Thread Daniel Freitas
understanding grows I might be able to help more. Maybe there's a way to output my own markup (as I've seen with some javascript) to display the image before or after. Anyways, this is a great framework and I'm enjoying it so far. Long time since I had fun writing web applications. Regards, Daniel Freitas

ModalWindow submit from nested form after close

2008-07-09 Thread Daniel Stoch
). I hope this is clear enough ;). How to prevent from submiting the firstForm by AjaxButton from the nested secondForm? Maybe modal window content markup should be removed from DOM after close? -- Daniel - To unsubscribe, e-mail

OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
? -- Best regards, Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
On Thu, Jul 3, 2008 at 2:53 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 8:24 PM, Daniel Stoch [EMAIL PROTECTED] wrote: But there is a one assumption, that bundle with Wicket classes (you probably have a Wicket bundled somehow in your app, don't you? :)), should have

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
On Thu, Jul 3, 2008 at 3:35 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 9:27 PM, Daniel Stoch [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 2:53 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Thu, Jul 3, 2008 at 8:24 PM, Daniel Stoch [EMAIL PROTECTED] wrote

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
issues and we will take it from there. Ok, we'll do :). Before I'll create any JIRA issue, first I want to ask other osgi-guys what are they thinking about proposed changes. Maybe someone will have a better/other concepts (or vote for these, like Edward did). -- Daniel

Re: Output streams from external servlet

2008-06-25 Thread Daniel Frisk
InlineFrame(include, new RedirectPage(url))); } } Hope this works for you. // Daniel Frisk jalbum.net On 2008-06-25, at 01:28, krisNog wrote: Hello everyone! I have a question regarding external servlets. I have a panel that I would like to stream content into from an external servlet

Re: Antwort: Re: Including wicket in JSPs?

2008-06-24 Thread Daniel Frisk
Perhaps you can use object as a drop in replacement of iframe? I haven't tested it in different web browsers so no guarantees from me :-) object data=http://java.net; type=text/html/object // Daniel Frisk jalbum.net On 2008-06-24, at 08:37, [EMAIL PROTECTED] wrote: Hi Jim, thank you

Re: idea: automatic component repo

2008-06-19 Thread Daniel Frisk
busy) as everyone else. I for one would love to browse this component marketplace and checkout demos of fancy stuff! // Daniel Frisk jalbum.net On 2008-06-19, at 10:17, Jonathan Locke wrote: this sort of marketplace might give JSF's claim to have lots of prefab components a real run

Re: Page Expired with ModalWindow

2008-06-19 Thread Daniel Wu
must be closed before the second one is opened? Daniel Wu wrote: Hi, the application I've been developing have to open modal dialogs in sequence. I have a dialog A, which is a panel with an AjaxLink, and when this AjaxLink is pressed, the dialog A should close and dialog B, which content

Re: WUG (wicket user group) @ Øredev

2008-06-18 Thread Daniel Frisk
We might show up with a small team from the north :-) But nothing decided yet, november is after the summer and ages away. I don't think you have to worry. when we have had the WUG meetings in Stockholm people have always been very late with registering. // Daniel jalbum.net On 2008-06-18

Page Expired with ModalWindow

2008-06-18 Thread Daniel Wu
have any idea of why I'm getting this PageExpired? Is there an easier way to open modal dialogs in sequence, opening a new one only the previous one is closed? Daniel -- View this message in context: http://www.nabble.com/Page-Expired-with-ModalWindow-tp17993206p17993206.html Sent from the Wicket

Re: Localizer cache with 150.000+ entries causing OutOfMemory

2008-06-10 Thread Daniel Frisk
the patch. But still, who wouldn't want to see months of uptime... // Daniel jalbum.net On 2008-06-10, at 11:29, Stefan Fußenegger wrote: Hi Igor, Thanks for your quick reply and the patch, sorry for not searching the mailinglist only but not JIRA. Your patch was for 1.4, I applied

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-06-09 Thread Daniel Walmsley
1) Generifying* Wicket [X] Can best be done like currently in the 1.4 branch, where models and components are both generified. I care most about the improved static type checking generified models and components give Wicket. 2) How strongly do you feel about your choice above? [X] Whatever

Re: AutoCompleteTextField - autocomplete multiple fields

2008-06-06 Thread Daniel Stoch
: textvalue_markupId. The rest you can see in the sources ;). -- Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-06-04 Thread Daniel Frisk
. I implemented this by hooking in to serialization, just checking each object in ObjectOutputStream.replaceObject and ObjectInputStream.resolveObject. Also had to use my own PageMapEntries to get a suitable hook. Might work as an idea for your implementation perhaps? // Daniel jalbum.net

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-06-04 Thread Daniel Frisk
that gets serialized again. I'm pretty sure it works as I intended and it might be generalized. The programming model sure is very nifty. // Daniel jalbum.net - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: AutoCompleteTextField - autocomplete multiple fields

2008-05-30 Thread Daniel Stoch
Thank for your post. initHead() will be very helpful here. I have voted for this issue. -- Daniel On Fri, May 30, 2008 at 9:23 AM, Roland Huss [EMAIL PROTECTED] wrote: Hi Daniel, Daniel Stoch-2 wrote: The main problem is that the AutoCompleteTextField and related classes (behavior

PagingNavigator WICKET-1548 - customization question

2008-05-29 Thread Daniel Stoch
) and no like this: if (!hasBeenRendered()) ? Then I will be able to remove components using the same condition. -- Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AutoCompleteTextField - autocomplete multiple fields

2008-05-28 Thread Daniel Stoch
can help. I haven't integrated other javascript libraries in my solution, but I have changed the default Wicket component (from wicket-extensions). I'll try to prepare quickstart demo with this modified component to show how it works. -- Daniel

AutoCompleteTextField - autocomplete multiple fields

2008-05-27 Thread Daniel Stoch
can point these places which need modifications), to allow easily to extend this component. What do you think? -- Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: (Class? extends Page?) casting troubles

2008-05-24 Thread Daniel Walmsley
3C--extends-Page%3C-%3E%3E%29--casting-troubles-tp17355847p17375350.htmlSent from the Wicket - User mailing list archive at Nabble.com.-To unsubscribe, e-mail: [EMAIL PROTECTED]For additional commands, e-mail: [EMAIL PROTECTED]

Meetup in Stockholm/Sweden - 22/5

2008-05-16 Thread Daniel Frisk
. // Daniel jalbum.net - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: What is the best way to create layouts in Wicket?

2008-05-05 Thread Daniel Stoch
) { // do not reference anything that is instantiation dependent return new RedFooPanel(id); } @Override protected Panel createBarPanel(String id) { // do not reference anything that is instantiation dependent return new RedBarPanel(id); } -- Daniel

Re: Spring 2.5 and Wicket, our vision about integration

2008-04-28 Thread Daniel Fernández Garrido
().getService(); } } Well... yes, this can happen. But this can happen with any of your non-serializable objects. It's just a matter of being careful ;) Regards, Daniel. On Mon, Apr 28, 2008 at 10:39 AM, Sergio García [EMAIL PROTECTED] wrote: This posts is about the vision that my

Re: WicketTester in spring, question about springinjection

2008-04-25 Thread Daniel Stoch
() { return new SpringComponentInjector(app, appctx)); } }; Maybe not a super elegant solution, but it should works. -- Daniel On Fri, Apr 25, 2008 at 3:21 PM, Sarkast [EMAIL PROTECTED] wrote: Hello there, I have a question which came up when trying to test my wicket pages. Currently

Re: Performance question

2008-04-15 Thread Daniel Frisk
Maybe the profiler that is bundled with NetBeans can be sufficent? http://profiler.netbeans.org/ // Daniel jalbum.net On 2008-04-15, at 09:41, Johan Compagner wrote: you can use this one for a while http://yourkit.com/eap/index.jsp not everything has to be opensource or free johan On Tue

Re: WebMarkupContainer multiplicated markup when using AjaxLink

2008-04-09 Thread Daniel Stoch
I've created JIRA issue for this (with quickstart-app): WICKET-1500: https://issues.apache.org/jira/browse/WICKET-1500 -- Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: @SpringBean in init

2008-04-08 Thread Daniel Stoch
(this); But then you should use AnnotSpringWebApplication or manually setup injector in InjectorHolder: InjectorHolder.setInjector(new AnnotSpringInjector(getSpringContextLocator())); -- Daniel On Tue, Apr 8, 2008 at 10:19 AM, Korbinian Bachl - privat [EMAIL PROTECTED] wrote: Hi Mathias, in short: you cant

WebMarkupContainer multiplicated markup when using AjaxLink

2008-04-07 Thread Daniel Stoch
Is it a bug or I should not use WebMarkupContainer to refresh its contents in ajax calls? -- Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: WebMarkupContainer multiplicated markup when using AjaxLink

2008-04-07 Thread Daniel Stoch
Wicket version: 1.3.3 Daniel On Mon, Apr 7, 2008 at 3:36 PM, Matej Knopp [EMAIL PROTECTED] wrote: What wicket version are you using? -Matej On Mon, Apr 7, 2008 at 2:38 PM, Daniel Stoch [EMAIL PROTECTED] wrote: Hi, There is a strange behaviour when I'm trying refresh

Cannot add wicket component to style tag

2008-04-05 Thread Daniel Walmsley
Hi there, I'm writing a wicket template that produces a KML document, and it won't let me add labels or resolve component wicket:id within the KML Style tag. D'oh! I'm assuming this is a hangover from the HTML world. My KML snippet: !-- styles for every user -- Style

Re: java.io.StreamCorruptedException: invalid type code: 29

2008-04-04 Thread Daniel Wu
:43 PM, Daniel Wu [EMAIL PROTECTED] wrote: I debugged my application and it really doesn't have a ClassNotFoundException eaten by ObjectInputStream. I compared the flow of two screens of my application, one that works and another that doesn't: 1) The line 298 of SecondLevelCacheSessionStore

Re: java.io.StreamCorruptedException: invalid type code: 29

2008-04-03 Thread Daniel Wu
if a page should be serialized/deserialized? Does anyone know what could be causing these problems? On Wed, Apr 2, 2008 at 7:28 PM, Daniel Stoch [EMAIL PROTECTED] wrote: Hi, It seems that this could be an OSGi related issue. We have the similar problem in our applications. You can look

Re: java.io.StreamCorruptedException: invalid type code: 29

2008-04-02 Thread Daniel Wu
: No that warning doesnt anything todo with serialization. But do you have a reproduceable testcase? That would be very nice to have, can you attach that to the jira (there is already one describing this i think) On 3/29/08, Daniel Wu [EMAIL PROTECTED] wrote: I've updated my wicket

Re: java.io.StreamCorruptedException: invalid type code: 29

2008-04-02 Thread Daniel Stoch
can be located in many different bundles: DynamicImport-Package: * Maybe such change could be done in Wicket core (in DefaultClassResolver class)? -- Daniel Stoch On 2008-03-29, at 22:22, Daniel Wu wrote: I've updated my wicket application to Wicket 1.3.2, but now, when I try

java.io.StreamCorruptedException: invalid type code: 29

2008-03-29 Thread Daniel Wu
it? Daniel -- View this message in context: http://www.nabble.com/java.io.StreamCorruptedException%3A-invalid-type-code%3A-29-tp16374745p16374745.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: [vote] Release 1.4 with only generics and stop support for 1.3

2008-03-17 Thread Daniel Walmsley
!Martijn--Buy Wicket in Action: http://manning.com/dashorstApache Wicket 1.3.2 is releasedGet it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.2 Daniel WalmsleyDirector,Firesydee:[EMAIL PROTECTED]m: +61404864141

Re: [vote] Release 1.4 with only generics and stop support for 1.3

2008-03-17 Thread Daniel Stoch
+1 Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Ajax form validation... i can't get it work!

2008-03-12 Thread Daniel Alonso
Sorry to disturb you again, guys, but i'm on a great problem. I have to delivered a prototype of a brand new application at my work, and we try to defense the idea of doing with wicket. The thing is that I must do a validation form like this (exactly, the same).

Include feedback messages description on alt Image property

2008-03-12 Thread Daniel Alonso
Hi again to everybody. After looking tons of examples related to wicket 1.2 I have no idea of how i can do the next: At this moment I cant show an error icon next to an erroneus field after submitting a form. The thing is that i must include the message feedback string as part of the alt

How can i Customize the style of Feedback Messages ?

2008-03-11 Thread Alonso Sanchez, Daniel
. Thanks in advance. Daniel Alonso

Re: FeedbackMessages per field

2008-03-11 Thread Daniel Alonso
Thank you so mucho for your help. It works very well :D -- View this message in context: http://www.nabble.com/FeedbackMessages-per-field-tp15950642p15975736.html Sent from the Wicket - User mailing list archive at Nabble.com.

RE: How can i Customize the style of Feedback Messages ?

2008-03-11 Thread Alonso Sanchez, Daniel
Hi again! Firstly, thanks a lot Vitek for your help. I have been testing a couple of things related with your response, and only the setEscapeModelStrings has solve a part of the solution. Through Google I have seen a solution for extend ComponentFeedbackPanel and write my own html code, but it

RE: How can i Customize the style of Feedback Messages ?

2008-03-11 Thread Alonso Sanchez, Daniel
Fantastic! Sorry for disturbing :P Thanks again -Mensaje original- De: Gerolf Seitz [mailto:[EMAIL PROTECTED] Enviado el: martes, 11 de marzo de 2008 12:39 Para: users@wicket.apache.org Asunto: Re: How can i Customize the style of Feedback Messages ? The things is that if there is an

RE: How can i Customize the style of Feedback Messages ?

2008-03-11 Thread Alonso Sanchez, Daniel
Thanks a lot Gerolf. Great suggestions. I have been looking some docs, and nabble forum... but (again) I've got a problem. Finally my webpage class looks like this (just the important part :D ): TextField sfid = new TextField(sfid); sfid.setRequired(true);

RE: How can i Customize the style of Feedback Messages ?

2008-03-11 Thread Alonso Sanchez, Daniel
Sorry again... just only one thing more (I promise this is the last). Taking your advice as starting point... is there any way to add the feedback message produced by the error to the image alt attribute? Thanks again for all your help. -Mensaje original- De: Alonso Sanchez, Daniel

FeedbackMessages per field

2008-03-10 Thread Alonso Sanchez, Daniel
De: Alonso Sanchez, Daniel Enviado el: lunes, 10 de marzo de 2008 10:39 Para: '[EMAIL PROTECTED]' Asunto: FeedbackMessages per field Hello everybody! I'm a newbie with wicket and during my first examples I have had a problem that I don't know how to solve. The fact is that I have

FeedbackMessages per field

2008-03-10 Thread Daniel Alonso
Hello everybody! I’m a newbie with wicket and during my first examples I have had a problem that I don’t know how to solve. The fact is that I have the typical login form, and I want to notify the users possible errors by showing an icon error next to each input field, just like showed in the

Re: Wicket JavaDoc + Maven

2008-03-04 Thread SEIDLER DANIEL
Thx Guys, that worked ! Am 04.03.2008 um 22:55 schrieb Igor Vaynberg: mvn eclipse:eclipse -DdownloadSources=true

Our new and shiny Wicket site!

2008-02-27 Thread Daniel Frisk
After a couple of months coding we have released our Wicket website! It has generally been a pleasure porting our jsp site and we have been able to add a lot of functionality as well. Check it out at http://jalbum.net // Daniel

Re: Our new and shiny Wicket site!

2008-02-27 Thread Daniel Frisk
Thanks! We wrote our own grid for linking to the photo albums, and the actual albums are generated by our desktop client. The whole concept is a bit different than Flickr and it's not a one size fits all solution. // Daniel On 2008-02-28, at 02:41, Scott Swank wrote: Daniel, Nice site

Re: Our new and shiny Wicket site!

2008-02-27 Thread Daniel Frisk
We are definately going with more ajax and stuff! But first things first so we need to get it running super smooth and then we'll add the bling :-) // Daniel On 2008-02-28, at 08:23, Nino Saturnino Martinez Vazquez Wael wrote: Hi Daniel Looks nice, is a touch of ajax on its way(I think

IPropertyResolver interface for property models

2008-02-06 Thread Daniel Stoch
(), getPropertyGetter(), getPropertySetter() methods. Ok I know, I can do that and probably I will do, by maybe it is worth to think if extracting such interface as IPropertyResolver is a good concept? Best regards, Daniel - To unsubscribe, e

Re: IPropertyResolver interface for property models

2008-02-06 Thread Daniel Stoch
with such ObjectEditor. Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: IPropertyResolver interface for property models

2008-02-06 Thread Daniel Stoch
getPropertyModel(String propertyExpression); // or maybe createPropertyModel ? instead of: Object getPropertyValue(String propertyExpression); void setPropertyValue(String propertyExpression, Object value); Daniel On Feb 6, 2008 5:20 PM, Maeder Thomas [EMAIL PROTECTED] wrote: If I understand this correctly

Re: IPropertyResolver interface for property models

2008-02-06 Thread Daniel Stoch
property models, the only difference is how they access object values = how their property resolver works :). Daniel On 2008-02-06, at 19:51, Johan Compagner wrote: Why not just return a hashmap as the model object and have besides that hashmap your real object On 2/6/08, Daniel Stoch [EMAIL

Re: IPropertyResolver interface for property models

2008-02-06 Thread Daniel Stoch
are implemented. So I must make general interface for this in Wicket. Daniel On 2008-02-06, at 21:34, Daniel Stoch wrote: This is exactly how ObjectEditor default implementation would looks like: it contains hashmap for edited values. Simple HashMap as a model is not a good solution, because you must

Re: loosely coupled panels: react to model object change

2008-02-06 Thread Daniel Stoch
model.notify(Event.SOME_EVENT) to fire listener methods in other panels. Daniel On 2008-02-05, at 23:51, Johan Compagner wrote: What not do that in your model itself? (Observer pattern or something like that) Just like all the swing models do because of there push nature instead of pull

Re: CompoundModel based on proxies

2008-02-06 Thread Daniel Stoch
I'm quite interested too. Daniel On 2008-02-06, at 19:27, Carl-Eric Menzel wrote: Scott Swank wrote: We're happy to share if folk like this approach. N.B. that the .to() call is for readability rather than out of any necessity. I'm quite interested in this. This looks like it is just

Using IInitializer and wicket.properties with Databinder

2008-02-03 Thread Daniel Walmsley
? How did you register the plug-in's persistent entities without recreating the entire SessionFactory after all the Iinitializers have been called? For that matter, how do you _know_ when all the IInitializers have been called?Thanks,Dan Daniel WalmsleyDirector,Firesydee:[EMAIL PROTECTED]m

Re: Session scoped Spring bean

2008-02-01 Thread Daniel Stoch
listener-class org.springframework.web.context.request.RequestContextListener /listener-class /listener Daniel On Feb 1, 2008 12:42 PM, Tormod Øverlier [EMAIL PROTECTED] wrote: Thanks for the quick answer. I already have aop:scoped-proxy/ in the bean. In fact, I get

Re: Model for previous pages

2008-01-25 Thread Daniel Frisk
Thanks Igor, with some restructuring of the pages this should be just as useful and without the need to access previous pages. // Daniel On 2008-01-25, at 18:11, Igor Vaynberg wrote: string url=urlfor(getpage()); url=requestutils.toabsolutepath(url); pass url onto paypal to use

Model for previous pages

2008-01-25 Thread Daniel Frisk
We have a use case in our system where users are redirected to a third party web site (Paypal), they later get redirected back to our site. How is it now possible to access the previous page or the model for that page (if we assume that the user continue with the same session)? // Daniel

Security violations and ERROR: filterStart with Tomcat deployment on Debian Etch

2008-01-20 Thread Daniel Walmsley
like to do things the recommended way, instead of having to use WicketServlet.Cheers,Dan Daniel WalmsleyDirector,Firesydee:[EMAIL PROTECTED]m: +61404864141

Re: Trouble with HybridUrlCodingStrategy and PageParameters

2008-01-05 Thread Daniel Fernández Garrido
and remove them from there, the URL coding strategy rewrites the URL (redirect) not showing the removed parameters. Thanks, Daniel. Matej Knopp wrote: Hi, this is unfortunately not possible at the moment. The reason is that the pageparameters are set to page as page metadata, but the metadata key

Undesired behavior of wicket:enclosure in 1.3.0-final compared to 1.3.0-rc2

2008-01-04 Thread Daniel Kröger
or DEBUG would be more appropriate, wouldn't it? Best regards, Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Trouble with HybridUrlCodingStrategy and PageParameters

2008-01-03 Thread Daniel Fernández Garrido
. And congratulations for 1.3! ;-) Regards, Daniel. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

<    1   2   3   4   5   6   >