Re: Set width of auto complete text field?

2009-01-21 Thread Daniel Peters
olor: white;border:1px solid #ccc;padding: 1px;margin-top:1px;text-align:left;} div.wicket-aa ul {list-style:none; padding:0; margin:0;} div.wicket-aa ul li {padding:1px 5px 1px 5px;} div.wicket-aa ul li.selected {background-color:#ff6600} -Daniel --

WicketRuntimeException

2009-01-19 Thread Daniel Ferreira Castro
.PageLogin; import com.jasp.ecommfwk.session.ECommBackOfficeSession; /** * @author Daniel * */ public class eCommBackOffice extends WebApplication { /** * */ public eCommBackOffice() { // TODO Auto-generated constructor stub }

Re: Wicket error in GlassFish

2008-12-16 Thread Daniel
t: > > >HelloWorldApplication > > org.apache.wicket.protocol.http.WicketFilter > >applicationClassName > > com.example.helloworld.HelloWorldApplication > > >debug >2 > > > 2008/12/16 Daniel > > > Hi

Re: Wicket error in GlassFish

2008-12-16 Thread Daniel
The welcome file list tag has been remove yet. But the result is the same. 2008/12/16 Ajayi Yinka > I think you are having something in your web.xml file like > >index.jsp > > if you have it, you may remove it. > > > > > > 2008/12/16 Daniel >

Wicket error in GlassFish

2008-12-16 Thread Daniel
y help me? Thank you in advance. -- Best regards, Daniel

Re: Newbie question

2008-12-09 Thread Mark Daniel
By original source, I meant I just tried it on the book source code download. On Wed, Dec 10, 2008 at 1:20 AM, Mark Daniel <[EMAIL PROTECTED]> wrote: > Hi Igor, > > I just changed one line the original source (in my original post), and > built a war and deployed on tomcat, and

Re: Newbie question

2008-12-09 Thread Mark Daniel
ew a list instance, but its probably not the same > instance of list you are adding items to. that is why the original > code uses a model to give listview the list. read the models > chapter... > > -igor > > On Tue, Dec 9, 2008 at 12:23 PM, Mark Daniel <[EMAIL PROTECTED]&g

Re: Newbie question

2008-12-09 Thread Mark Daniel
t; items will be displayed within a > ListView. > > > > -Original Message- > From: Mark Daniel [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 09, 2008 6:23 PM > To: users@wicket.apache.org > Subject: Newbie question > > > Hello all, > > I'm

Newbie question

2008-12-09 Thread Mark Daniel
Hello all, I'm following the wicket in action book. I'm trying the cheese store in chapter 3. I was following along the code by reading a bit and coding a bit on my own. The code defining the ListView for the cheese cart is originally: add(new ListView("cart", new PropertyModel(this, "cart.cheese

Re: Adding jquery effects to paging navigator

2008-12-05 Thread Daniel Peters
adeOut('normal', function(){ %s });", 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

Modify navigation menu based on user role

2008-11-23 Thread Yazbek, Daniel (Daniel)
role of the logged in user. Is this the pattern/trend commonly used to achieve this? Any resources/links would be helpful! Thanks -Daniel.

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
el has 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

Re: testing borders with WicketTester

2008-11-02 Thread Daniel Lipski
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...

Re: testing borders with WicketTester

2008-11-02 Thread Daniel Lipski
components 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.vayn

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

Re: Domain Model as interfaces

2008-10-16 Thread Daniel Frisk
dding the impl 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 doin

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 s

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

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. > > -- > Vi

Re: Localization issue

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

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 > >

Handling runtime exceptions in ajax request

2008-08-11 Thread Daniel Stoch
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 unsu

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 a

Re: help me please

2008-08-05 Thread Daniel Freitas
more 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 P

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 fee

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] For

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]>

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

2008-07-31 Thread Daniel Freitas
plementing 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 P

Stack overflow when extending from page

2008-07-31 Thread Daniel Freitas
nd throw a more 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
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 ins

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 c

Where has DateLabel gone to

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

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 examples

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

2008-07-28 Thread Daniel Freitas
o 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 2008/7/28 Igor Vaynberg <[EMAIL PROTECTED]> &g

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]>

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

2008-07-28 Thread Daniel Freitas
l 28, 2008 at 1:55 PM, Daniel Freitas > <[EMAIL PROTECTED]> wrote: > > I don't. I expected it to be rendered twice with the same id ;). Which is > > not possible, thus I had to create two components with two ids to make > the > > navigator appear twice. > >

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

2008-07-28 Thread Daniel Freitas
ent HTML > ids? > > -Igor > > On 7/28/08, Daniel Freitas <[EMAIL PROTECTED]> w

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

2008-07-28 Thread Daniel Freitas
With the following markup: It works ok with regular PaginNavigator or with this Ajax code: topPagingNavigator = new AjaxPagingNavigator("t

Using same navigator on top and bottom of page.

2008-07-28 Thread Daniel Freitas
t the same level If I add a new component paging the same data, they do not sync correctly(clicking the 3rd page on the top navigator does not update the bottom navigator, which istill displays page 3 as clickable). Regards, Daniel Freitas

Component.setOutputMarkupPlaceholderTag()

2008-07-24 Thread Daniel Freitas
Hello guys, I'm very new to Wicket and I was trying out some examples and Ajax stuff. I created a small ajax editable label for fun and I had to set the setOutputMarkupPlaceholderTag() flag to true. As my understanding, when you set a component to be invisible, it does not render at all in the pag

ModalWindow submit from nested form after close

2008-07-09 Thread Daniel Stoch
sts inside a DOM, so the browser tries to submit firstForm using the first found submit button (which is a button from the secondForm). I hope this is clear enough ;). How to prevent from submiting the firstForm by AjaxButton from the nested secondForm? Mayb

Re: OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
e > create jira 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 f

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, Da

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

OSGi and class loading issues solution proposal

2008-07-03 Thread Daniel Stoch
OSGi. What do you think about such changes or maybe you have a better solution for these problems? -- Best regards, Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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 extern

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 :-) http://java.net"; type="text/html"> // Daniel Frisk jalbum.net On 2008-06-24, at 08:37, [EMAIL PROTECTED] wrote: Hi Jim, thank

Re: Page Expired with ModalWindow

2008-06-19 Thread Daniel Wu
which 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

Re: idea: automatic component repo

2008-06-19 Thread Daniel Frisk
even developers are as lazy (and not to mention 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

Page Expired with ModalWindow

2008-06-18 Thread Daniel Wu
oes anyone 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

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-

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
-autocomplete.js. The JS class Wicket.MultiAutoComplete now accepts one more argument: a table of related components' markup ids. Text values for these components are passed from renderer as arguments of tag in the following format: textvalue_markupId. The rest you can see in the sources ;). -- D

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

2008-06-04 Thread Daniel Frisk
sk later it is an object with serialized data 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,

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

2008-06-04 Thread Daniel Frisk
eeded. 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 jalbu

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 Au

Re: PagingNavigator WICKET-1548 - customization question

2008-05-29 Thread Daniel Stoch
In your solution I have to have a "first" link in my navigator markup (HTML). But I don't want to have such link at all (even is pageNumber is > 0). And what about this condition in PagingNavigator.onBeforeRender(), why not "!hasBeenRendered()"? -- Daniel On Thu, M

PagingNavigator WICKET-1548 - customization question

2008-05-29 Thread Daniel Stoch
condition is in such form: if (get("first") == null) 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
e's advice on how to integrate > that code. let me know if i 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 quicks

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>) casting troubles

2008-05-23 Thread Daniel Walmsley
AIL PROTECTED]-- View this message in context: http://www.nabble.com/%28Class%3C--extends-Page%3C-%3E%3E%29--casting-troubles-tp17355847p17375350.htmlSent from the Wicket - User mailing list archive at Nabble.com.-----To unsubscribe

AutoCompleteTextField in 1.4-SNAPSHOT

2008-05-21 Thread Daniel Peters
can be alot of text) It should use the renderer for the deault selection too. best regards, Daniel code: == final IAutoCompleteRenderer cr = new AbstractAutoCompleteTextRenderer() { @Overrid

Meetup in Stockholm/Sweden - 22/5

2008-05-15 Thread Daniel Frisk
are coming. // 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
t Panel createFooPanel(String id); protected abstract Panel createFooPanel(String id); - public RedPage(...) extends BasePage { super(...); } @Override protected Panel createFooPanel(String id) { // do not reference anything that is instantiation dependent return new RedFooPa

Re: Spring 2.5 and Wicket, our vision about integration

2008-04-28 Thread Daniel Fernández Garrido
a spring bean if you do for instance: > > public class MyPage { > private Service service; > public MyPage() { >this.service = Application.get().getService(); > } > } Well... yes, this can happen. But this can happen with any of your non-serializable objects. It's just

Re: WicketTester in spring, question about springinjection

2008-04-25 Thread Daniel Stoch
onListener() { 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 tr

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-08 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
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 Mat

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

2008-04-07 Thread Daniel Wu
: > Dont know if the stream corrupt has the same root problem as the > stackoverflow > But that is just fixed. > > johan > > > On Sat, Mar 29, 2008 at 11:22 PM, Daniel Wu <[EMAIL PROTECTED]> wrote: > > > > > I've updated my wicket application to Wicket

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, > > >

WebMarkupContainer multiplicated markup when using AjaxLink

2008-04-07 Thread Daniel Stoch
markup), it is dupliacted below the original paragraph. Each click on this ajax link causes this paragraph multiplication and after eg. 4 clicks the page looks like: Header A Header A Header A Header A Header A Ajax request Is it a bug or I should not use WebMarkupContainer to r

Cannot add wicket component to

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 tag. D'oh!

I'm assuming this is a hangover from the HTML world.

My KML snippet:



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

2008-04-04 Thread Daniel Wu
3, 2008 at 8: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 tha

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

2008-04-03 Thread Daniel Wu
exception. What defines 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 > p

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

2008-04-02 Thread Daniel Stoch
ve a dynamic import for all classes which 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 t

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

2008-04-02 Thread Daniel Wu
ohan Compagner wrote: > > 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 <

java.io.StreamCorruptedException: invalid type code: 29

2008-03-29 Thread Daniel Wu
have any idea of what is causing 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. -

Stockholm/Sweden Meetup

2008-03-28 Thread Daniel Frisk
Next week at the 3rd April 16:00 it's time for our next meeting. This time we'll have several shorter presentations(probably in swedish) while we enjoy a beer or two. For more information see the page at http://wicket.jalbum.net/ See you there! // Daniel @

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]

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

2008-03-17 Thread Daniel Walmsley
heard!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 Frisk
+1 // Daniel Frisk jalbum.net On 2008-03-17, at 09:13, Martijn Dashorst wrote: This thread is for voting only. Use the [discuss] thread for voicing your opinion or asking questions. This makes counting the votes much easier. The discussion on our development list makes it clear that a lot

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" proper

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). http://wicketstuff.org/wicketdojo1

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 Sanch

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
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 d

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. ---

How can i Customize the style of Feedback Messages ?

2008-03-11 Thread Alonso Sanchez, Daniel
27;t know how to change this, in order to show only the image tag? Any kind soul knows how to solve this? Your help would be very appreciated :D. Thanks in advance. Daniel Alonso

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 imag

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 fac

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

Wicket JavaDoc + Maven

2008-03-04 Thread SEIDLER DANIEL
Hello, is it possible to add the wicket javadoc as an artifact in pom.xml. So maven can download and integrate javadoc Jar in eclipse by itself? thanks in advance daniel

Re: Bookmarkable page absolute url

2008-03-04 Thread Daniel Frisk
I use RequestUtils to convert the path to an absolute path, seems to work like a charm :-) import org.apache.wicket.protocol.http.RequestUtils; RequestUtils.toAbsolutePath(relativePath); Regards // Daniel On 2008-03-04, at 12:17, Paolo Di Tommaso wrote: Guys, I've some Wicket (

<    1   2   3   4   5   6   >