Re: {wicket 1.3 beta 2} AjaxFormComponentUpdatingBehavior broken?

2007-08-27 Thread Nino Saturnino Martinez Vazquez Wael
Igor did you ever get the chance to check this out? regards Nino Nino Saturnino Martinez Vazquez Wael wrote: Now available from badongo to avoid cheesy IE problems http://www.badongo.com/file/4142529 Nino Saturnino Martinez Vazquez Wael wrote: Argh had made an error in the previous

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-27 Thread Alex Objelean
PROS: * In a usecase where a field is disabled on the clientside (this means that the disabled field is null) the application will throw the ConversionException when trying to convert a null value. A workaround for this issue is: instead of disabling the field, make it readonly. BUT there is

Re: {wicket 1.3 beta 2} AjaxFormComponentUpdatingBehavior broken?

2007-08-27 Thread Igor Vaynberg
nino, you know how to use a debugger dont you? for future reference here is what i did: set a breakpoint in formcomponent.updatemodel to see if the object inside the model is being updated, walk that to component.setmodelobject() call, go inside and you will see that the model object is not being

Re: replace Panel inside a Form

2007-08-27 Thread Benjamin Ernst
Thank you for your help! It works great! Benjamin 2007/8/24, Igor Vaynberg [EMAIL PROTECTED]: the problem is you replace it but do not update the reference so next time the onclick runs it calls replacewith on an old reference. it is a common mistake. EinsatzPanel newPanel = new

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-27 Thread Igor Vaynberg
On 8/26/07, Alex Objelean [EMAIL PROTECTED] wrote: PROS: * In a usecase where a field is disabled on the clientside (this means that the disabled field is null) the application will throw the ConversionException when trying to convert a null value. i do not think this is a valid argument.

Re: {wicket 1.3 beta 2} AjaxFormComponentUpdatingBehavior broken?

2007-08-27 Thread Nino Saturnino Martinez Vazquez Wael
Sorry for this, I did not create our domain classes. However I did not say that you had to do this, I thought it was a wicket problem. So of course I got to the wicket list with it, as I've done with other things. Some times it turnes out to be a wicket bug sometimes not. I am very aware that

nested ajax requests (AjaxEditableLabel and form)

2007-08-27 Thread fhagen
Hi, I got some problems in my app with a nested ajax request. In my form i'm using a DataTable whick includes AjaxEditableLabel components. The Problem with these combination is that if a label is changed, the rest of the form is conditionally updated. So the label refreshes the whole form:

Re: Alternative to Wicket data binding

2007-08-27 Thread Timo Rantalaiho
On Sat, 25 Aug 2007, Eelco Hillenius wrote: are discussing here though is quite a different case. If it is no problem that people access members directly, and you think getters and setters are too much bloat, why don't you just make them public then? Because it's less future proof in the

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-27 Thread Alex Objelean
i dont think this is needed. your custom converter should include a null check. But I do not use custom converter. In my case it is about a simple String or Integer or whatever... So, you suggest to create a custom converter for each case where I disable the form component on the

Re: DownloadLink hanging

2007-08-27 Thread Thomas Singer
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. -- Best regards, Thomas Singer _ SyntEvo GmbH Brunnfeld 11 83404 Ainring Germany www.syntevo.com Igor Vaynberg wrote: if it is that

Re: strang bug in wicket-1.3.0-beta2 when submitting a form

2007-08-27 Thread Alex Objelean
Yes, indeed. In my case I have a Button component which is not inside a Form. The workaround for this issue is to use a Link instead of Button. But I wonder why to force a button to be inside a form, since I do not need it to be in the form? This issue wasn't in the wicket-1.2.x branch. Thank

Re: DownloadLink hanging

2007-08-27 Thread Gerolf Seitz
well, it kind of is the task of the developers, but it's totally up to them to choose when they fix (or not fix) which bugs. also, what keeps you from contributing? anyway, companies providing commercial support are listed in the wiki:

JS space pollution in wicket-extensions

2007-08-27 Thread Alex Objelean
I've noticed that wicket-extension components (for instance palette.js) pollute the js namespace. Wouldn't it be better to create a namespace for them? Something like this would be pretty: Wicket.Extensions.Palette. This proposal is valid for any other components which contribute with js files.

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: nested ajax requests (AjaxEditableLabel and form)

2007-08-27 Thread Matej Knopp
What exception? On 8/27/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I got some problems in my app with a nested ajax request. In my form i'm using a DataTable whick includes AjaxEditableLabel components. The Problem with these combination is that if a label is changed, the rest of

Antwort: Re: nested ajax requests (AjaxEditableLabel and form)

2007-08-27 Thread fhagen
Oh, i forgot: 1552733 [http-8080-Processor19] ERROR org.apache.wicket.RequestCycle - component tabs:panel:form:table:rows:17:cells:2:cell:label not found on page pages.ConfirmPage[id = 4], listener interface = [RequestListenerInterface name=IBehaviorListener, method=public abstract void

Re: AJAX form submit and validation

2007-08-27 Thread Ian Godman
Apologies to Eelco, missed your email ! Very annoying, would have saved me a lot of time! Many thanks. Ian - Original Message From: Carlos Pita [EMAIL PROTECTED] To: users@wicket.apache.org Sent: Monday, 27 August, 2007 6:50:00 AM Subject: Re: AJAX form submit and validation On

wicket contrib yui

2007-08-27 Thread Korbinian Bachl
Hi, i stumbled over yui some time ago, and noticed that there is also a wicket-contrib-yui project. However, the version under https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-contrib-yui/ seem to rely on 2.2.0. Are there any plans for a 2.3.0 or sth. like that?

Re: DownloadLink hanging

2007-08-27 Thread Thomas Singer
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/ Sorry to say, but I hate websites where you can't find

Re: DownloadLink hanging

2007-08-27 Thread Matej Knopp
I've commited a possible fix. Can you plase try if it helps your problem? -Matej On 8/27/07, Eelco Hillenius [EMAIL PROTECTED] wrote: 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

Antwort: Re: Re: nested ajax requests (AjaxEditableLabel and form)

2007-08-27 Thread fhagen
Hi, i've seen, that the quickstart is for wicket 1.2.6 and i'm working with 1.3. Do you need the code for the table with the EditableLabel and the page? Freundliche Grüße / With kind regards Fabian Hagen SN AG Klingenderstr. 5 D 33100 Paderborn voice +49 5251/1581- 862 fax +49

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: DownloadLink hanging

2007-08-27 Thread Matej Knopp
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: Re: Re: nested ajax requests (AjaxEditableLabel and form)

2007-08-27 Thread Matej Knopp
I need a quickstart with as little code as possible but enough to demonstrate teh problem :) There is a quickstart for 1.3 as well btw. -Matej On 8/27/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, i've seen, that the quickstart is for wicket 1.2.6 and i'm working with 1.3. Do you

Re: Alternative to Wicket data binding

2007-08-27 Thread Matej Knopp
On 8/27/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Sat, 25 Aug 2007, Eelco Hillenius wrote: are discussing here though is quite a different case. If it is no problem that people access members directly, and you think getters and setters are too much bloat, why don't you just make them

Re: Re: Re: Re: nested ajax requests (AjaxEditableLabel and form)

2007-08-27 Thread Matej Knopp
Add a JIRA issue, attach the project to it and assign it to me. Thanks. -Matej On 8/27/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Ok, i'm trying to build a little testapp. Where do i have to provide the code. I haven't done that before? Freundliche Grüße / With kind regards Fabian

Re: DownloadLink hanging

2007-08-27 Thread Thomas Singer
I think the email address is quite obvious. I'm talking about real addresses. But as Eelco already stated, it might be hard to list them because you are scattered over the world. I'll accept that. Ever heard of open source? Just think about it a little. You have a product that a group of

Re: DownloadLink hanging

2007-08-27 Thread Matej Knopp
The blocking is necessary in order not to corrupt session state. We have as fine grained locking as possible (under the circumstances). Web applications are by nature multi-threaded. If you don't synchronize the access to certain resources (sessions) you can get bugs that are very difficult to

Re: RepeatingView : Removing a table row

2007-08-27 Thread pokkie
Thanks alot for the response Carlos. Btw, why don't you just use a listview with a model that filters out the selected items? I am currently trying to convert the RepeatingView into a ListView, but I am having problems setting the model on the ListView. I call populateItem with a model, but

Re: RefreshingView only gets rendered when TreeTable node is opened twice

2007-08-27 Thread Gerolf Seitz
file a jira issue and attached a quickstart: https://issues.apache.org/jira/browse/WICKET-892 On 8/27/07, Gerolf Seitz [EMAIL PROTECTED] wrote: i'm using trunk (as of yesterday) 1.3.0-SNAPSHOT i'll file a jira issue later today, including a quickstart gerolf On 8/27/07, Matej Knopp [EMAIL

Re: RefreshingView only gets rendered when TreeTable node is opened twice

2007-08-27 Thread Matej Knopp
fixed On 8/27/07, Gerolf Seitz [EMAIL PROTECTED] wrote: file a jira issue and attached a quickstart: https://issues.apache.org/jira/browse/WICKET-892 On 8/27/07, Gerolf Seitz [EMAIL PROTECTED] wrote: i'm using trunk (as of yesterday) 1.3.0-SNAPSHOT i'll file a jira issue later today,

Feed-back for trunk

2007-08-27 Thread Thomas Singer
I've switched from 1.3beta2 to trunk. 1) The QueryStringUrlCodingStrategy now adds trailing slashes and breaks our application (instead of /index.html now /index.html/ is used). 2) An Border now always seems to return a markup stream - this broke our class derived from

New MEAP content for Wicket in Action available

2007-08-27 Thread Martijn Dashorst
Last friday two new chapters of the upcoming Wicket in Action have been released through the Manning early access program. This release concludes the first part of the book: Getting started with Wicket. The chapters now available are: 1. What is Wicket? (FREE!) 2. The architecture of Wicket

Listview / input components repaint via ajax?

2007-08-27 Thread Nino Saturnino Martinez Vazquez Wael
Hi 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

Re: Listview / input components repaint via ajax?

2007-08-27 Thread Nino Saturnino Martinez Vazquez Wael
Hold for a minute, it might be something internal. I'll get back if it turns out not to be. Nino Saturnino Martinez Vazquez Wael wrote: Hi 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

Re: AW: How to make link that open a new window

2007-08-27 Thread fero
Thanks Stefan, it works. I am using ResourceLink. Stefan Lindner wrote: Wich type of Link? A pure Link has a opupSettings getPopupSettings() mthod to set the behavior. -Ursprüngliche Nachricht- Von: fero [mailto:[EMAIL PROTECTED] Gesendet: Montag, 27. August 2007

Re: New MEAP content for Wicket in Action available

2007-08-27 Thread Philip A. Chapman
On Mon, 2007-08-27 at 14:49 +0200, Martijn Dashorst wrote: 4. Building a cheesy Wicket application (new) So, I *have* to ask. Did Justin Lee help with chapter four? -- Philip A. Chapman Desktop and Web Application Development: Java, .NET, PostgreSQL, MySQL, MSSQL Linux, Windows 2000,

Re: Listview / input components repaint via ajax?

2007-08-27 Thread fero
Of course they are cleared, because data form textfield is transfered to model only if submited with submit button. If u repaint the panel, model is blank. Use AjaxEditableLabel instead of TextField. It will transfer dat to model immediately after editing. Hope it helps, i was solving this issue

Re: New MEAP content for Wicket in Action available

2007-08-27 Thread Martijn Dashorst
On 8/27/07, Philip A. Chapman [EMAIL PROTECTED] wrote: So, I *have* to ask. Did Justin Lee help with chapter four? Cheeser (note the 3rd e) did not have anything to do with chapter four, though I often wondered how much karma naming the shop 'Cheesr' would grant me. Martijn -- Wicket joins

Re: Feed-back for trunk

2007-08-27 Thread Thomas Singer
3) We'd added fragments to a border - that broke as well... Tom - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

What's the minimum dependence of Wicket 1.3 beta2?

2007-08-27 Thread Zhang Hailong
Hi, I downloaded wicket 1.3 beta2. Since I don't use hibernate, Spring or other frameworks, I think not all *.jar in lib are necessary for me. What's the minimum dependencies? Thank you! best, Hailong Zhang

Re: {wicket 1.3 beta 2} AjaxFormComponentUpdatingBehavior broken?

2007-08-27 Thread Igor Vaynberg
my point was and still is: use a debugger to see where the problem is. if the debugger takes you deep into the bowles of wicket then its fine - probably a wicket problem. but if the debugger takes you into your own equals method, then it is obvious where the problem is. -igor On 8/27/07, Nino

Re: Wicket-1.3-beta2 validation (conversion) bug?

2007-08-27 Thread Igor Vaynberg
On 8/27/07, Alex Objelean [EMAIL PROTECTED] wrote: Maybe we can find a compromise regarding this issue? how about you create a quickstart that demonstrates this, and then we can play around with it and see what we can come up with. -igor

Re: strang bug in wicket-1.3.0-beta2 when submitting a form

2007-08-27 Thread Igor Vaynberg
im pretty sure even in 1.2.6 you had to have a button inside a form. why is this so? because this is how html works, your input type=submit have to be inside a form, and that is what Button is designed to represent. -igor On 8/27/07, Alex Objelean [EMAIL PROTECTED] wrote: Yes, indeed. In my

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

2007-08-27 Thread Igor Vaynberg
the only runtime dependency is logging, slf4j-1.4.2 i believe. to compile you will also need servlet spec jar and junit. -igor On 8/27/07, Zhang Hailong [EMAIL PROTECTED] wrote: Hi, I downloaded wicket 1.3 beta2. Since I don't use hibernate, Spring or other frameworks, I think not all

Re: RepeatingView : Removing a table row

2007-08-27 Thread Carlos Pita
I am currently trying to convert the RepeatingView into a ListView, but I am having problems setting the model on the ListView. I call populateItem with a model, but afterwards the model is not being set on the view. That's funny. Could you post the related code? Regards, Carlos

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

2007-08-27 Thread Philip A. Chapman
On Mon, 2007-08-27 at 19:10 +0200, Jan Kriesten wrote: dependency groupIdjunit/groupId artifactIdjunit/artifactId version3.8.1/version scopeprovided/scope /dependency Actually, I don't have junit in my classpath on the server - and Wicket seems

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: What's the minimum dependence of Wicket 1.3 beta2?

2007-08-27 Thread Philip A. Chapman
On Mon, 2007-08-27 at 10:22 -0700, Eelco Hillenius wrote: Because we ship helper classes for unit testing. As long as you're not using those you won't have to actually have the junit dependency on your server. Eelco Thanks, Eelco. -- Philip A. Chapman Desktop and Web Application

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: DownloadLink hanging

2007-08-27 Thread Igor Vaynberg
here is a download link that doesnt block. notice that unlike the original it has no security - it's urls are stable and it will stream any file off your harddrisk. you can use it as a starting point to build a download link suited for your app. -igor /* * Licensed to the Apache Software

Form validation error in Wicket 1.3

2007-08-27 Thread dzenanr
The last major thing for my application to run on Wicket 1.3 are form validation errors. They do not appear on the page where the form is. In Wicket 1.2 I used the following code to report the error in the form: protected void addErrorByKey(String key) { String validationError =

tabbedpanel and bookmarkable links

2007-08-27 Thread wired
(version 1.2.6) Does anyone have any quick workaround to making the link in each tab of a TabbedPanel bookmarkable? Many thanks. -- View this message in context: http://www.nabble.com/tabbedpanel-and-bookmarkable-links-tf4337745.html#a12355907 Sent from the Wicket - User mailing list archive

Re: strang bug in wicket-1.3.0-beta2 when submitting a form

2007-08-27 Thread Alex Objelean
Yes, indeed. The input type='submit' must be contained in a form (this is how html works), but is it mandatory to contain an input type='button' in a form? Alex. igor.vaynberg wrote: im pretty sure even in 1.2.6 you had to have a button inside a form. why is this so? because this is how

Re: JS space pollution in wicket-extensions

2007-08-27 Thread Frank Bille
I guess most of us share your view on this. But these things has evolved. wicket-ajax.js also started as some simple functions. If you create an issue for it in JIRA, we have it so we don't remember it. If you even attach a patch I'm sure it will be addressed. :) Frank On 8/27/07, Alex Objelean

Re: creating RSS feeds with Wicket

2007-08-27 Thread thijs
I'll see what I can come up with in the next few days/weeks. I just started a new job so that is eating a lot of my time. Unfortunately they're not running a project with wicket :( It's all Oracle adf, not bad either. But not as good as :) Ryan Sonnek wrote: That's a really good question. If

DataTable span tag

2007-08-27 Thread Tim Lantry
Is there a way to remove the span tags from the table cells in a DataTable? Example td wicket:id=cells span wicket:id=cellrow0_col1/span /td I tried to call visitChildren on the DataTable but I don't ever get to the Item. I also tried to override newCellItem adding setRenderBodyOnly but to

Re: DataTable span tag

2007-08-27 Thread fero
I dont know. Why do u need to do that? Tim Lantry wrote: Is there a way to remove the span tags from the table cells in a DataTable? Example td wicket:id=cells row0_col1 /td I tried to call visitChildren on the DataTable but I don't ever get to the Item. I also tried to

DatePicker

2007-08-27 Thread fero
Which components work with DatePicker except the TextField? I would like to use Label. Is it possible? Thx Fero -- View this message in context: http://www.nabble.com/DatePicker-tf4338699.html#a12358843 Sent from the Wicket - User mailing list archive at Nabble.com.

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 Zhang Hailong
Yes. I have tried that. log4j-1.2.13.jar, slf4j-api-1.3.1.jar and slf4j-log4j12-1.3.1.jar are necessary. PS. I have never used Maven, but I will use it from now on. hailong On 8/27/07, Igor Vaynberg [EMAIL PROTECTED] wrote: the only runtime dependency is logging, slf4j-1.4.2 i believe.

onchange event and DropDownChoice DojoDatePicker

2007-08-27 Thread Thies Edeling
Hi all, When I add an AjaxFormComponentUpdatingBehavior it seems I can't add any AjaxFormValidatingBehavior afterwards? When I add the validating behaviour the UpdatingBehaviour seems to get lost. Is this a known issue ? I encountered another onchange oddity with the DojoDatePicker. It's not

Re: DataTable span tag

2007-08-27 Thread Igor Vaynberg
you have to call setrenderbodyonly on whatever it is you add to the item -igor On 8/27/07, Tim Lantry [EMAIL PROTECTED] wrote: Is there a way to remove the span tags from the table cells in a DataTable? Example td wicket:id=cells span wicket:id=cellrow0_col1/span /td I tried to

3 Wicket courses in London with Al Maw, incl 2 new 1 day courses

2007-08-27 Thread jweekend
Al Maw (from the core Wicket development team) develops, maintains and delivers the 3 Wicket courses in London: 1 - Getting Started with Apache Wicket 1.3 (1 day, next course: Saturday, September 22) 2 - More Apache Wicket 1.3 (1 day, next course: Saturday, October 6) 3 - Apache Wicket 1.3 (2

Modified GuestBook app not working

2007-08-27 Thread Joe O'Donnell
Hello Wicket Users and thanks in advance for any help, I am attempting to write my first wicket application by modifying the GuestBook application. I replaced the Comment class with my own class called arDetails. My application compiles and the first page loads normally when run in Jetty.

Re: Modified GuestBook app not working

2007-08-27 Thread Igor Vaynberg
see commentform.onsubmit() what i would do is to delete the comment class and see where the code breaks. -igor On 8/27/07, Joe O'Donnell [EMAIL PROTECTED] wrote: Hello Wicket Users and thanks in advance for any help, I am attempting to write my first wicket application by modifying the

Re: tabbedpanel and bookmarkable links

2007-08-27 Thread Swaroop Belur
Oops a typo .In that link you will have to override newUrl method to return what u want. Read as .In that link you will have to override getURLmethod to return what u want. -swaroop On 8/28/07, Swaroop Belur [EMAIL PROTECTED] wrote: Link i think calls getUrl method to get its url to

Re: TreeTable...how to refect a label change on TreeNode

2007-08-27 Thread Timo Rantalaiho
On Tue, 21 Aug 2007, Doug Leeper wrote: As I am new to Ajax and Wicket, I am not sure what the target would be. Is this the node, the user object, or something else? Do I need to configure anything to get Ajax to work? It is the AjaxRequestTarget object which is passed to all Ajax event

Re: DataTable with DropDownChoice to set rowsPerPage

2007-08-27 Thread janders
I'm new to wicket and I fail to see how the proposed solution works. Coping this into the IDE, and even after correcting for caps, there are several errors. For one, add takes a component, not a component plus int[]. Also IModel wanted to implement unimplemented methods. What I'm I missing?

Re: DataTable with DropDownChoice to set rowsPerPage

2007-08-27 Thread Igor Vaynberg
heh, you have to meet us half way here. you cant expect to be able to paste pseudocode into the ide and have it compile and work. the int[] param is intended to be the third constructor param of dropdownchoice not the second param of add(). if you are using an older wicket ver - 1.2 then imodel

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: What's the minimum dependence of Wicket 1.3 beta2?

2007-08-27 Thread Philip A. Chapman
On Tue, 2007-08-28 at 06:00 +0200, Jan Kriesten wrote: to make a long story short: maven is fine if the project is setup and maintained for it. else it gets a real pain. Isn't that the result of a poorly maintained project that uses *any* build process, whether it be Maven, Ivy, Ant,

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: TreeTable question

2007-08-27 Thread Gerolf Seitz
Should I create a panel for each tree node type? or should it be fragment? How do I get this component in the appropriate column? Do I need to extend AbstractTreeColumn? make sure you override both newCell methods and return null for the one with IRenderable as return type. gerolf

Re: DataTable with DropDownChoice to set rowsPerPage

2007-08-27 Thread Igor Vaynberg
On 8/27/07, janders [EMAIL PROTECTED] wrote: I understand, but being a newbie, this makes little sense. Where is wantOnSelectionChangedNotifications() and onSelectionChanged(). Aren't these require? only if you want the selection updated right after selecting a new value in the dropdown

Re: DataTable with DropDownChoice to set rowsPerPage

2007-08-27 Thread janders
I understand, but being a newbie, this makes little sense. Where is wantOnSelectionChangedNotifications() and onSelectionChanged(). Aren't these require? How does the selection value get passed to rowsPerPage? Can you point me to a working example? BTW, I'm currently using Wicket 1.2.3.