Re: replace panels with fade effect

2007-07-28 Thread Eelco Hillenius
On 7/28/07, Leszek Gawron [EMAIL PROTECTED] wrote: I'd like to create an ajax heavy application (no pages, all panels). When replacing panels during ajax event I would like the old panel to fade out and new one to fade in (or any kind of morph effect). I've been trying to make use of

Re: general question on dynamic pages

2007-07-30 Thread Eelco Hillenius
With regard to the Login/Welcome example, I have a problem with the Login's page's mutator methods being called in the onClick() in the Welcome page. Your scenario requires that Welcome know too much about Login. If Welcome and Login depend on the same model, and Welcome changes the model,

Re: Behaviour adding to Component body

2007-07-30 Thread Eelco Hillenius
On 7/30/07, Jan Kriesten [EMAIL PROTECTED] wrote: Hi Eelco, You can use onRendered and write directly to the response using Response response = component.getResponse(); not really. I tried that before, But that only writes the param after the close tag which isn't what is intended. :-)

Re: Behaviour adding to Component body

2007-07-30 Thread Eelco Hillenius
since I haven't overridden onComponentTagBody yet - what happens to child-Tags then, do I have to manage these, too? If that's an issue, it's better to follow Martijn's advice and make this component a panel with a list view for the parameters. Eelco

Re: Behaviour adding to Component body

2007-07-30 Thread Eelco Hillenius
I thought I could just concentrate on the last aspect and apply only the needed changes... (i.e. move an attribute to a param name...). You should be able to pull that off if you use AbstractTransformerBehavior. Btw, if you ever get to it, a nice Flash component with a demo for

Re: Behaviour adding to Component body

2007-07-30 Thread Eelco Hillenius
yes, tried that already. strangely, object gets an additional xmlns:wicket=http://wicket.apache.org-attribute?! but it doesn't seem to hurt. Yeah, that happens in onComponentTag: public void onComponentTag(final Component component, final ComponentTag tag) {

Re: Menu???

2007-08-04 Thread Eelco Hillenius
Any extension or work being done to create a javascript based menu in Wicket? I know in the old nabble there was discussion but that was over a year ago. Nope. I guess it doesn't itch enough for us, and we didn't get any contributions in the mean time that I know off. If I'd had some more

Re: Resizing Table Columns Like Yahoo Mail

2007-08-04 Thread Eelco Hillenius
Or an advanced one http://extjs.com/deploy/ext/examples/grid/array-grid.html That's sweet! Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: NullPointerException when clicking on an expired wizard button

2007-08-06 Thread Eelco Hillenius
I was running some random tests to try to see what kind of trouble a typical user of my app could cause. After completing a wizard, clicking the browser's back button, then clicking the previous button of the wizard, I get the error below. Is there a more graceful way to handle this rather

Re: mountBookmarkablePage and missing parameters - exception thrown

2007-08-06 Thread Eelco Hillenius
On 8/5/07, Igor Vaynberg [EMAIL PROTECTED] wrote: mount with indexed url coding strategy if you dont mind users messing with your urls. I think it's kind of annoying as well. Are we (Wicket devs) really against supporting this, or don't we support it because the code gets a bit hairy? Eelco

Re: How to use form method=get?

2007-08-07 Thread Eelco Hillenius
I've tried extending Form and adding tag.put(method, get) in onComponentTag(..), but this doesn't work either. The page gets rendered as with form method=get but submits won't work. Is this possible achieve? It looks like you can override method 'getMethod' in your form and let it return get.

Re: NullPointerException when clicking on an expired wizard button

2007-08-07 Thread Eelco Hillenius
On 8/6/07, David Leangen [EMAIL PROTECTED] wrote: After completing a wizard, clicking the browser's back button, then clicking the previous button of the wizard, I get the error below. Looks like a bug. Are you using 1.2.6? Yes. Unfortunately, I'm still stuck on 1.2.6+ for the

Re: {wicket 1.3 Beta 2} Adding panel via ajax...

2007-08-07 Thread Eelco Hillenius
On 8/7/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Ok, I'll try to explain myself a little better. Im using the tabs from extensions, tabs require that what you work with are panels (otherwise I would have done this with pages). So some of my tabs have a certain flow.

Re: BBcode component?

2007-08-07 Thread Eelco Hillenius
On 8/7/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi I was wondering if any one had done a bbcode component for wicket that they would share? Not that I know of. But I would be surprised if no-one every did this before with Wicket :) Im needing something that will do

Re: [Newbie] Add a yui calendar without a datetextfield

2007-08-08 Thread Eelco Hillenius
On 8/8/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i used to use the code below, but now i see eelco has removed AbstractCalendar :( Sorry. I put it back. The problem is that it isn't maintained well, as all the effort so far has been around the date picker. And since the datepicker is a

Re: [Newbie] Add a yui calendar without a datetextfield

2007-08-08 Thread Eelco Hillenius
On 8/8/07, Gerolf Seitz [EMAIL PROTECTED] wrote: i was looking for AbstractCalendar too... hm, maybe we could use this as an opportunity to provide an all around YUI Calendar integration with features like a standalone calendar, multiple calendars, calendars that open when a specific event

Re: wicketstuff-dojo questions and answers

2007-08-08 Thread Eelco Hillenius
I'm getting the feeling this list doesn't have a ton of patience for questions it considers dumb. I think it's more a matter of us being incredibly busy :) Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: wicketstuff-dojo questions and answers

2007-08-08 Thread Eelco Hillenius
Q. a. Why isn't this stuff documented in more depth? b. And why don't people answer every stupid little question I have. A. a. Wicketstuff-Dojo is still a fairly young project with people who are currently more into coding it for more functionality than documenting. You're certainly welcome

Re: [Newbie] Add a yui calendar without a datetextfield

2007-08-08 Thread Eelco Hillenius
On 8/8/07, Igor Vaynberg [EMAIL PROTECTED] wrote: can you not factor out the common thing into an abstract behavior and have abstractcalendar add that abstract behavior to itself and bridge config methods through itself? Possibly. Core of the matter is that we should get rid of the code

Re: Compare JSP Vs Wicket?

2007-08-09 Thread Eelco Hillenius
Please send me all your suggestions. including the below question In jsp, I can pass the values using query string for eg. form action=actionJSP.jsp?userName=edipassword=edi using request.getParameter(userName); I can get the userName. using request.getParameter(password); I can get the

Re: Reacting to DateField change

2007-08-09 Thread Eelco Hillenius
On 8/9/07, Federico Fanton [EMAIL PROTECTED] wrote: On Thu, 9 Aug 2007 16:00:24 +0100 Dipu Seminlal [EMAIL PROTECTED] wrote: i just tried with the date picker on 1.2.6 and it works, don't know if anything has changed drastically in 1.3 In 1.3 DatePicker was replaced with DateField, they

Re: Reacting to DateField change

2007-08-09 Thread Eelco Hillenius
Ok, thanks anyway :) So.. Markup modification isn't needed, but if I'm not mistaken attaching the behavior directly to the DateField doesn't yield what I'm looking for..? Nope. That is because the DateField itself is a panel, while you need to attach it to the text field it embeds. In your

Re: Authentication in Webapp and Wicket documentation...

2007-08-09 Thread Eelco Hillenius
honestly spoken, this is not the best strategy for everyone... Obviously. But we have limited resources (no-one is paid for working on Wicket), so it is hard to cater to everyone. We have tried to attract writers (for a reference guide) from the very early start (even offered some money) but it

Re: Authentication in Webapp and Wicket documentation...

2007-08-09 Thread Eelco Hillenius
No, actually I was not aware of that, was waiting for the Wicket in Action book... http://manning.com/dashorst/ You can get the first chapters now. Two more chapters will be released early next week. maybe one should also start writing some proper articles as a starting point; I might do

Re: shopping cart and back button

2007-08-11 Thread Eelco Hillenius
I have a user case like this: 1. User opens products page. 2. User chooses a product. 3. User clicks add product to shopping cart. 4. User is redirected to shopping cart list. 5. User clicks _back button in the browser_. 6. Added product in step 3 disappear from the shopping cart :( So is

Re: RequestDispather.forward()

2007-08-12 Thread Eelco Hillenius
Would the fact that wicket now uses a filter instead of a servlet have an effect on trying to forward a request. I'm trying to forward a request from the jsp/servlet portion of our app to a bookmarkable wicket page using RequestDispatcher.forward(), but no matter what sort of path I send it,

warning: API break FormComponent#checkRequired and FormComponentPanel

2007-08-12 Thread Eelco Hillenius
All, Please read https://issues.apache.org/jira/browse/WICKET-839 and https://issues.apache.org/jira/browse/WICKET-840 and check whether this effects you. I didn't have time to look at the wicket-stuff projects, but if you are extending FormComponentPanel, you'll have to implement checkRequired

Re: Empty CSS

2007-08-13 Thread Eelco Hillenius
IResourceSettings.setDisableGZipCompression() is not available in the version of Wicket that I'm using (1.2.6). We didn't provide compression of resources in Wicket, so it's correct that setting doesn't exist. Eelco - To

nuke the sourceforge lists!

2007-08-13 Thread Eelco Hillenius
Hey Martijn, others, Can we go ahead and remove all users from the sourceforge lists and make sure no-one can every subscribe again? Or is there a better way? Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Import Validation using wicket

2007-08-14 Thread Eelco Hillenius
I saw that example, But I am not able to understand fully. Pls explain. When you do: new TextField(foo, model, Integer.class); then Wicket will check that input can safely be converted to an integer. With the current version of Wicket, you don't even need to provide the Integer argument if

Re: Ideas for a Wicket Based Cms

2007-08-14 Thread Eelco Hillenius
two extra points: *) think about bookmarkability/ nice URLs. *) try to make the user-facing side (so the result of what people did with the CMS/ anything that can be accessed without logging in) stateless if you can. Eelco On 8/14/07, Eelco Hillenius [EMAIL PROTECTED] wrote: 1) It will use

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Eelco Hillenius
On 8/14/07, Alex Objelean [EMAIL PROTECTED] wrote: In wicket-1.2.6 I used this in order to not serialize session attributes: [CODE] getDebugSettings().setSerializeSessionAttributes(false); [/CODE] What is equivalent for this in wicket-1.3.0-beta2? Thank you! There is none, but if you

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-14 Thread Eelco Hillenius
On 8/14/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 8/14/07, Alex Objelean [EMAIL PROTECTED] wrote: In wicket-1.2.6 I used this in order to not serialize session attributes: [CODE] getDebugSettings().setSerializeSessionAttributes(false); [/CODE] What is equivalent

Re: Client Timezone in ClientProperties

2007-08-14 Thread Eelco Hillenius
I see that there is a method called getTimezone() on the ClientProperties object. The javadoc for it says Get the client's time zone if that could be detected. I tried to get this property, by submitting request from various browsers on various platforms, but it always returns null. Can

Re: Caching the context path

2007-08-15 Thread Eelco Hillenius
Is this a bug? If so, where should I look to fix this? Wicket 1.2 was gready in determining and using the path. I think what you want should work with Wicket 1.3. Didn't test it yet though. Eelco - To unsubscribe, e-mail:

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-15 Thread Eelco Hillenius
Eelco, the ISessionStore interface has a lot of methods.. can you give me an example of how to get rid of the serialization? It really slows down the application. I can imagine those checks did cost something in 1.2, though with Wicket 1.3 and the way we use it with the session stores should

Re: Wickest way to format a label before render

2007-08-15 Thread Eelco Hillenius
On 8/15/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: done. but How about using your book? Come on... Are you intentionally building momentum? kind of like Hollywood blockbusters? :-) Are you enjoing our geeky intrigue? Thats not right mister... /stephen_colbert jaja

Re: Wicket vs. ZK

2007-08-15 Thread Eelco Hillenius
I searched the threads on this forum but didn't find any discussion on comparing Wicket with ZK (www.zkoss.org/), the #1 Ajax project on sourceforge.net now. I read a lot on both frameworks and they both seem nice from the feedback of the users. Since I am about to choose one web framework, I

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-16 Thread Eelco Hillenius
Eelco, you're right! The latest profiling shows where the bottleneck is... it is indeed not where I was looking for. I thought it was because of serialization because when using 1.2.x branch i found out that setSerializeSessionAttributes(false) improved a lot application responsiveness.

Re: Wicket vs. ZK

2007-08-16 Thread Eelco Hillenius
We've been using wicket for a couple of months now, our first application is about to be deployed, so I looked back at the templates and started wondering how much this separation of concerns applies to us. We have a base page with some panels supplied by subclasses, then those panels are

Re: setSerializeSessionAttributes in wicket-1.3.0-beta2

2007-08-16 Thread Eelco Hillenius
Well, in this case the bottleneck was caused by an expensive call which was not cashed inside a very long list... Anyway, profiling tools helps very much in such cases, so I would recommend everybody who have performance issues to use it. :) Yeah, for sure. Which tool are you using? We are

Re: 1:1-translation from html [was: Wicket vs. ZK]

2007-08-17 Thread Eelco Hillenius
in fact, select, choices (and radio) are still a weak part in wicket (imho). there are many classes to deal with them, but most aren't customizable enough and/or require different markup (span instead of select) as the designer would put in. It's certainly not a perfect framework, and we need

Re: Namespace change for Wickets xhtml tags in 1.3?

2007-08-17 Thread Eelco Hillenius
I guess we should. You mind opening a feature request for that? Eelco On 8/14/07, Erik van Oosten [EMAIL PROTECTED] wrote: Hi, Since the namespace for Wicket tags is now http://wicket.sourceforge.net/; I was wondering whether this will change in 1.3. I only found one incomplete thread

Re: Slider Component

2007-08-18 Thread Eelco Hillenius
I am relatively new to Wicket and just hooked to it. Thanks for creating such a good framework without any messy xml or configuration files. I just wanted to know if there are any good open source Slider component available and can be integrated with Wicket? I have found ZK, Prototype GI

Re: Editable DataTeble

2007-08-19 Thread Eelco Hillenius
Thanks gumnaam! Without the tree I would be exactly what I need. I gonna try it. Try adding columns to your datatable with EditableLabel components. Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Editable DataTeble

2007-08-19 Thread Eelco Hillenius
On 8/19/07, fero [EMAIL PROTECTED] wrote: I got it working:) The only thing to consider still is that if you make them all text fields, your browsers may have problems displaying them if they are too many. A whole bunch of text fields may also clutter the display quite a bit. If you use

Re: Editable DataTeble

2007-08-19 Thread Eelco Hillenius
On 8/19/07, fero [EMAIL PROTECTED] wrote: I see, but I don't know how to do editable labels. I could not find it among wicket/wicket-extensions classes. Plz tell me how to do them. See org.apache.wicket.extensions.ajax.markup.html.AjaxEditableLabel. You could use it like: item.add(new

Re: London Wicket - Bean Editor talk available on-line.

2007-08-19 Thread Eelco Hillenius
On 8/19/07, Martijn Dashorst [EMAIL PROTECTED] wrote: Keynote '08 just works Under file you can record your audio. If that is done, you can export it to swf, mov with audio. Neat. I'll have to try that sometime :) Eelco -

Re: Problem following TextField example

2007-08-20 Thread Eelco Hillenius
Hi !! I'm following TextField example at http://wicketstuff.org/wicket13/compref/?wicket:bookmarkablePage=%3Aorg.apache.wicket.examples.compref.TextFieldPage (sorry long line) After failing for a while I've found these differences in the generated html code: In the

Re: Problem following TextField example

2007-08-20 Thread Eelco Hillenius
you should worry about them. Duh. You should *not* worry about them :) Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem following TextField example

2007-08-20 Thread Eelco Hillenius
Yes, as I said in my last post, I'm using 1.2.6, last stable version as of some two or three days ago. Thanks for your example !! That's why those two URLs are so different. What is not clear to me is what exactly goes wrong? Do you get exceptions? Or do your models not get upated

Re: SOLVED !! Re: Problem following TextField example

2007-08-21 Thread Eelco Hillenius
Browsing the forum archive I've found a clue to this issue: In web.xml I've changed the line url-pattern/wicket/url-pattern, adding a url-pattern//url-pattern as another url pattern and now it doesn't give an error. Can you give us your whole url-pattern section please? Note that it

Re: SOLVED !! Re: Problem following TextField example

2007-08-21 Thread Eelco Hillenius
servlet-mapping servlet-nameWicketApplication/servlet-name url-pattern/wicket/url-pattern /servlet-mapping servlet-mapping servlet-nameWicketApplication/servlet-name url-pattern//url-pattern /servlet-mapping I'm using Netbeans 5.5.1

Re: How to set wicket's locale?

2007-08-22 Thread Eelco Hillenius
On 8/21/07, Johan Compagner [EMAIL PROTECTED] wrote: then you browser tells wicket that it should use English . But you can set it yourself: Session.setLocale() Or if for instance you want to fix the locale to always use a certain one, use a custom session and set the locale it's constructor.

Re: wicket vs tapestry ?

2007-08-22 Thread Eelco Hillenius
On 8/22/07, Alex Shneyderman [EMAIL PROTECTED] wrote: I just started to look for a component based framework. I came across both tapestry and wicket (and it would be hard not to as you guys share the same host) but I kind of fail to see what the differences are? From my limited experiments

Re: wicket vs tapestry ?

2007-08-22 Thread Eelco Hillenius
Eelco Hillenius wrote: You can download the first chapter of Wicket In Action for free here: http://manning.com/dashorst/ and some chapters of Tapestry In Action Wow, Wicket In Action, we're all were waiting for it :-) Is this early access edition mature enough to buy or it's better

Re: keyboard shortcuts in wicket ?

2007-08-22 Thread Eelco Hillenius
On 8/21/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi I once started a wicket stuff contrib, called wicket input events. Which were gonna be all about input events like mouse events and key events. It never got that far because I didnt really needed it. Nothing beats

Re: wicket vs tapestry ?

2007-08-22 Thread Eelco Hillenius
On 8/22/07, Chris Colman [EMAIL PROTECTED] wrote: Hi Eelco, I saw you mention Hibernate in the intro but I've been using JPOX with great success with Wicket also. You might want to mention that in the book or new comers might think Wicket is a Hibernate only framework. I use JPOX through

Re: wicket vs tapestry ?

2007-08-22 Thread Eelco Hillenius
On 8/22/07, Martijn Dashorst [EMAIL PROTECTED] wrote: You mean the wicket-phonebook? Yeah. Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Page and compoenent level feedback are mixing together

2007-08-22 Thread Eelco Hillenius
On 8/22/07, Igor Vaynberg [EMAIL PROTECTED] wrote: you have to create your own custom feedback filter. this is simply how wicket feedback works. it is stored per page, and if you want to filter it you have to do it inside the panel. Still, using these filters is a bit clumsy imo. I can see

Re: wicket vs tapestry ?

2007-08-23 Thread Eelco Hillenius
But since I'm currently learning, I can't help wondering at each step where the data gets stored magically. Likely that will go away once I know my way around Wicket. It's also not a complaint, just part of getting to know the best way of doing things. I think it's a very good idea you have

Re: wicket vs tapestry ?

2007-08-23 Thread Eelco Hillenius
If you're interested, a contribution for the address book example with exPOJO/ JPOX would be more than welcome. Definitely, not a problem. When do you need it by? Whenever you feel like it. Where can I find the spec for the address book app? No spec, only code :)

Re: wicket vs tapestry ? (Back Button Detection-Support)

2007-08-23 Thread Eelco Hillenius
On 8/23/07, William Hoover [EMAIL PROTECTED] wrote: Possible starting point for a client solution for back button detection/support: http://www.onjava.com/pub/a/onjava/2005/10/26/ajax-handling-bookmarks-and-back-button.html?page=1 Thanks for suggesting. We have discussed that and other

Re: Constructor of Component not DRY?

2007-08-23 Thread Eelco Hillenius
hmmm... that would go against my taste of chaining from the constructor with the least parameters to the constructor with the most parameters. I'd just tend to chose the constructor with the most complex signature as the default constructor, doing the 'real' construction part of the object

Re: [Wicket-user] Wicket in Action now available through Manning Early Access Program

2007-08-24 Thread Eelco Hillenius
On 8/24/07, Swaroop Belur [EMAIL PROTECTED] wrote: Well, i had the same bad luck as India is not in the choice. They asked me to get a paypal account Great. Largest software country in the world by now? So does it work with paypal then? For all countries? Eelco

Re: Component Factory and code against interface

2007-08-24 Thread Eelco Hillenius
On 8/24/07, Johan Compagner [EMAIL PROTECTED] wrote: We can do that because all our components implement specific interfaces which changes the state of the component. For example interface ILabelMethods { setBackground(Color color) setForeground(Color color) // and so on }

Re: DataView and onComponentTag

2007-08-24 Thread Eelco Hillenius
On 8/24/07, Igor Vaynberg [EMAIL PROTECTED] wrote: dataview doesnt have its own markup, it delegates it to its direct children. so you want to put that oncomponenttag into the item the dataview creates. override dataview.newitem() and override oncomponenttag on the returned item. It would

Re: DataView and onComponentTag

2007-08-24 Thread Eelco Hillenius
On 8/24/07, Igor Vaynberg [EMAIL PROTECTED] wrote: or we can forward the call to the repeatermore intuitive for newbies less intuitive for the rest :) The items would forward the calls? Hmmm. Sounds a bit dangerous/ confusing. Eelco

Re: Alternative to Wicket data binding

2007-08-25 Thread Eelco Hillenius
On 8/25/07, Matej Knopp [EMAIL PROTECTED] wrote: But the binding is as pluggable as possible. You can write any IModel implementation you want. Think of (Compound)PropertyModel as pure convenience implementation (that works for 99% usecases). With wicket, you don't think of mapping http

Re: Alternative to Wicket data binding

2007-08-25 Thread Eelco Hillenius
On 8/25/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i think that is a foolish argument as you are assuming property model should only work on _beans_ it is perfectly normal to do something like this: class data { public String name; public int age; } Yes, I hope you didn't really think that I

Re: Alternative to Wicket data binding

2007-08-25 Thread Eelco Hillenius
On 8/25/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 8/25/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 8/25/07, Igor Vaynberg [EMAIL PROTECTED] wrote: i think that is a foolish argument as you are assuming property model should only work on _beans_ it is perfectly normal to do

Re: Alternative to Wicket data binding

2007-08-25 Thread Eelco Hillenius
I fail the see the logic in that, sorry. Why just not throw any scope limiting away? in this particular case: yes. dont forget that property model is entirely about convinience in the first place, and flattening scopes is just another part of that convenience :) So you write a class with

Re: Alternative to Wicket data binding

2007-08-25 Thread Eelco Hillenius
yes it is the second time this topic comes up out of how many of thousands of users there are i dont know. i think this feature is very convenient. it is not something you can toggle on and off because 3rd party components might be written with this in mind. so i would say keep it, end

Re: AJAX form submit and validation

2007-08-26 Thread Eelco Hillenius
On 8/26/07, Ian Godman [EMAIL PROTECTED] wrote: Thanks but this does not solve my problem. I am submitting the form via ajax using an AjaxSubmitLink. If the form has errors on it then I do not get the submit, if the form has no errors then the submit code runs ok. The errors are not

Re: Newbie questions

2007-08-26 Thread Eelco Hillenius
On 8/26/07, Otan [EMAIL PROTECTED] wrote: I hope that chapter on Models be free to download as well for the benefits of newbies. Sorry, I'm afraid we can't do that. Only chapter 1 is free to download. Eelco - To unsubscribe,

Re: DownloadLink hanging

2007-08-27 Thread Eelco Hillenius
On 8/27/07, Thomas Singer [EMAIL PROTECTED] wrote: Isn't fixing bugs the task of the Wicket developers? We don't have a problem ordering support, but I could not find information where to get it. It's unfortunate you have an urgent problem. Sorry about that. However, everyone of the development

Re: DownloadLink hanging

2007-08-27 Thread Eelco Hillenius
On 8/27/07, Thomas Singer [EMAIL PROTECTED] wrote: Your best bet on getting quick support is to fix it yourself and send in a patch. Well, if that would be possible, I would have done that or worked around it myself (like done with some own components). http://www.wicket-support.com/

Re: What's the minimum dependence of Wicket 1.3 beta2?

2007-08-27 Thread Eelco Hillenius
Read the maven documentation and understand the pom. That's definitely something I don't want to do. It has become harder in a not so small number of cases to build things from source since there are different and incompatible versions of maven - even more so since some maven repos don't

Re: Listview / input components repaint via ajax?

2007-08-27 Thread Eelco Hillenius
I have a listview in a panel. I have a ajax link to add items to the list. When I click the link the listview are repainted, because I have it in the markupcontainer just as it should. In the listview there are some textfields, these are cleared when the markupcontainer are repainted, I dont

Re: DatePicker

2007-08-27 Thread Eelco Hillenius
On 8/27/07, fero [EMAIL PROTECTED] wrote: Which components work with DatePicker except the TextField? I would like to use Label. Is it possible? We're talking about the one in wicket-datetime, right? Not entirely sure, but I think it should. Could you please just try? Make sure your label

Re: What's the minimum dependence of Wicket 1.3 beta2?

2007-08-27 Thread Eelco Hillenius
i just wanted to express, that not anyone trying to build a webapp with wicket is a maven expert or wants to become one (i don't want either). Agreed. so, when someone asks a question on dependencies, i find it somewhat 'rude' to just come in with a comment suggesting 'maven can tell it,

Re: unable to set content type

2007-08-27 Thread Eelco Hillenius
Wouldn't you use text/xml for that? Eelco On 8/15/07, Ryan Sonnek [EMAIL PROTECTED] wrote: I'm having some baffling behavior with my app. I have a custom web page that streams page xml content. I thought this would be pretty straightforward. should be able to just do this right?

Re: How to replace panelA with panelB using AjaxLink in panelA

2007-08-27 Thread Eelco Hillenius
On 8/13/07, Tauren Mills [EMAIL PROTECTED] wrote: My use case can best be described as making wicket-phonebook work within a single tab of a tabbed panel using AjaxLink for create, edit, and delete. Thus, I have a page that contains a TabbedPanel. One tab of TabbedPanel contains

Re: TreeTable question

2007-08-27 Thread Eelco Hillenius
On 8/14/07, Doug Leeper [EMAIL PROTECTED] wrote: I am using the Tree Table component in Wicket Extensions. I would like to do the following: Background: I have N number of columns: Column 1: operation panel (operations available for the particular tree node item) Column 2: the tree node

Re: Redirected after BrowserInfoPage and mounted Pages.

2007-08-28 Thread Eelco Hillenius
This was a bug. See WICKET-896. Thanks for reporting, it is fixed now. Eelco On 8/20/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Short description :- When using mounted pages, wicket redirects to wrong URL, after BrowserInfoPage, which is called by Session.get().getClientInfo(), when

Re: NullPointerException when resolving a class

2007-08-28 Thread Eelco Hillenius
I am trying to upgrade to wicket 1.3. I was running 1.2.6 with no problems. When trying to resolve the class for this markup: bundleresource://88/com/company/package/MyClass$WelcomeLabel.html in MarkupResourceStream, the method: public Class getMarkupClass() { return

Re: conditional markup change with AjaxEditableLabel

2007-08-28 Thread Eelco Hillenius
On 8/24/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, i am using a subclass of AjaxEditableLabel. This one works fine so far but I have one Problem. If the value of the label is 0 the markup should change. I tried it this way with no effect. public class MyAjaxEditableLabel extends

Re: Using ClientProperties Object for User selectable Timezone.

2007-08-28 Thread Eelco Hillenius
On 8/21/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Currently ClientProperties object has a getTimeZone() method, that uses BrowserInfoPage's response, to calculate a client's Timezone. Would it be too much trouble to add a setTimeZone() method, so that the TimeZone property is user

Re: WicketSessionFilter

2007-08-28 Thread Eelco Hillenius
On 8/25/07, Nick Ward [EMAIL PROTECTED] wrote: I want to have a separate servlet to go along with my wicket application that can serve streaming files. However, it needs to have access to the wicket session to know what to stream. I was thinking about using a WicketSessionFilter to help me do

Re: wicket contrib yui

2007-08-28 Thread Eelco Hillenius
On 8/27/07, James McLaughlin [EMAIL PROTECTED] wrote: Yes there is. I haven't had much time to see what the impact of the change would be, but I set up YuiHeaderContributor to be able to select versions. If you have the time and inclination, you can setup the 2.3.0 library under

Re: hierarchy does not match

2007-08-28 Thread Eelco Hillenius
On 8/28/07, Kees de Kooter [EMAIL PROTECTED] wrote: Hi Igor, What kind of information would you like to have? Source code? I did attach the entire exception page. The Apache mailing lists don't allow attachments, so that got filtered. Furthermore, a relevant piece of code usually helps us

Re: Is Wicket a proper framework for a Webshop ?

2007-08-28 Thread Eelco Hillenius
If you're looking for a good action oriented framework - check out Stripes - I hear it's very good at what it does. The other alternative is Struts 2, but I hear people prefer Stripes. Spring MVC seems to be getting a little behind... imho any action oriented/ model 2 framework doesn't help

Re: Is Wicket a proper framework for a Webshop ?

2007-08-28 Thread Eelco Hillenius
For the record I completely agree with you :) I'm in the process of slapping the developers around here, trying to get them to wake up. Senior dev's recommending struts 1 for gods sake... now that's what i call afraid of change It's out of ignorance, and their unwillingness to see what

Re: Is Wicket a proper framework for a Webshop ?

2007-08-29 Thread Eelco Hillenius
On 8/29/07, William Hoover [EMAIL PROTECTED] wrote: Could you elaborate on what is lacking in Wicket when referring to the back button support (when compared to GWT)? I was under the impression that Wicket had robust back button support? Wicket's back button support is pretty robust for

Re: Wicket getting some bad press at Slashdot.org

2007-08-29 Thread Eelco Hillenius
On 8/29/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Over in the Slashdot article about GWT in Action there are some negative opinions toward Wicket expressed. Just thought I'd mention it in case any of the gurus want to weigh in too. (Head over to this link, set the threshold to 4, then

Re: best practice for a header component with links defined by the page

2007-08-29 Thread Eelco Hillenius
So let me try to rephrase your problem: you have a header component that shows a variable number of components (links). Use a repeater (e.g. list view or repeating view) for the variable number of components, and you probably want to wrap the header component in a panel so that it is easy to move

Re: Wicket capability for LARGE forms

2007-08-29 Thread Eelco Hillenius
On 8/29/07, Antony Stubbs [EMAIL PROTECTED] wrote: I have a couple of pages with _very large forms_, that are also modified dynamically to set which fields are editable using javascript, dependant on the value of a drop down list. Please see the example image attached. And that's only the

Re: Wicket HTML Simplicity

2007-08-29 Thread Eelco Hillenius
On 8/29/07, Carlos Silva [EMAIL PROTECTED] wrote: Apparently there is a javascript library that allows you to do just this. http://jroller.com/wireframe/entry/auto_previewable_wicket_pages I'm wondering why such a tool is not part of wicket? I will give it a try. There is actually an

Re: best practice for a header component with links defined by the page

2007-08-29 Thread Eelco Hillenius
So am I correct in thinking that, in general, most HTML pages in WIcket will have all possible subcomponents listed, and the visibility will control things that shouldn't be there... That's one way to do it. But a better way typically is to build up your pages dynamically, using panels for

Re: VisitChildren bottom-up

2007-08-29 Thread Eelco Hillenius
On 8/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote: hrm. i have implemented a postorder traversal for formcomponents (see FormComponent.visitFormComponentsPostOrder) so you can either take that code and use it in your app, or we can bring it up to markupcontainer and generalize it. the

  1   2   3   4   5   6   7   8   9   >