[Wicket-user] DropDown within ModalWindow does not work in Camino

2007-07-31 Thread Michael Day
DropDown within ModalWindow does not work in Camino. It displays, but nothing happens when I click it to expand. Has anybody else experienced this? - This SF.net email is sponsored by: Splunk Inc. Still grepping through

Re: [Wicket-user] Updates within Panels in datatable

2007-07-31 Thread Igor Vaynberg
On 7/31/07, salmas <[EMAIL PROTECTED]> wrote: > > - Even though I do nothing in onSubmit (which I know does get called) the > table is reloaded (button.getRequest() shows the request for the page to > reload). I'd like to stop the auto redraw and do an AJAX update from > within > onSubmit instead,

[Wicket-user] Updates within Panels in datatable

2007-07-31 Thread salmas
I have a datatable in which each row contains two panels. In one panel I have a textfield and a radio button and in the other panel I have a button. So there can be many textfields and buttons. When the user clicks the button in panel 2 in one of the rows I need to read the values in the textfield

Re: [Wicket-user] Uploading binary files via MockHttpServletRequest

2007-07-31 Thread Frank Bille
Thanx for the bug report. On 7/31/07, mperham <[EMAIL PROTECTED]> wrote: > > In general, I believe you should be building the request as a byte array, > not a String. > Sounds reasonable. Perhaps you could provide a patch for it? Just attach it to the issue. Frank ---

Re: [Wicket-user] Uploading binary files via MockHttpServletRequest

2007-07-31 Thread mperham
Frank, thanks for replying. I believe the problem is in MockHttpServletRequest.buildRequest(). It takes the binary data out of the file and puts it into a String. This does an implicit decoding of the bytes based on the platform's default encoding (Cp1252 in Windows) and will cause corruption w

Re: [Wicket-user] Uploading binary files via MockHttpServletRequest

2007-07-31 Thread Frank Bille
Hi On 7/31/07, mperham <[EMAIL PROTECTED]> wrote: > > > I'm trying to unit test a page that accepts a binary upload. I've got a > unit > test which works fine for a page that accepts an XML (i.e. text) file but > the binary data seems to cause problems. Does anyone have an example of > how > to

Re: [Wicket-user] Wicket Job Opportunity

2007-07-31 Thread Watter
We've now received final funding for this position and are interviewing candidates. Interested parties would need to be available soon. Please contact me at the email below if you are interested. Matt Watter wrote: > > Our team is developing a new application Using the following > technologie

[Wicket-user] QWicket

2007-07-31 Thread winlaw
HI I a new to Wicket and have downloaded the QWicket quickstart but it has no pom file so will not allow to run mvn idea:idea to generate the Intellji files. Van anyone advise please? Many thanks. winlaw -- View this message in context: http://www.nabble.com/QWicket-tf4194381.html#a11928454

Re: [Wicket-user] QWicket

2007-07-31 Thread Igor Vaynberg
the author of qwicket is allergic to maven, so you will have to configure the project yourself -igor On 7/31/07, winlaw <[EMAIL PROTECTED]> wrote: > > > HI > > I a new to Wicket and have downloaded the QWicket quickstart but it has no > pom file so will not allow to run mvn idea:idea to generate

Re: [Wicket-user] How to set a date on backing model obj from contents of drop down lists?

2007-07-31 Thread David Rosenstrauch
David Leangen wrote: > One suggestion: what about having a date pojo like: > > public class MyDate > { > get/setMonth() > get/setDay() > get/setYear() > > public Date getDate() > { > // translate object state into a Date object > } > } > > > Then use PropertyModel to get/set th

[Wicket-user] Form clearInput

2007-07-31 Thread 桂林
when i submit a form with data,it ok,then i want to clear the form data from the form with the form method clearInput() .but it does not work, why? -- kalin 2007-07-31 - Th

[Wicket-user] Uploading binary files via MockHttpServletRequest

2007-07-31 Thread mperham
I'm trying to unit test a page that accepts a binary upload. I've got a unit test which works fine for a page that accepts an XML (i.e. text) file but the binary data seems to cause problems. Does anyone have an example of how to upload binary data? FYI, here's the XML upload method that works

[Wicket-user] Add New Icon to Tree Node

2007-07-31 Thread Sridhar.N
Hi, I am trying to add few icons to an Tree Node, I tried using addNewIcon() from DefaultAbstractTree but it adds the default folder-closed and folder-open icons to the node. Thanks Sidds. -- View this message in context: http://www.nabble.com/Add-New-Icon-to-Tree-Node-tf4192248.html#a11921853

Re: [Wicket-user] ERROR - Internal error cloning object

2007-07-31 Thread Dipu Seminlal
aaah, thank you very much Eelco, you guys rock ! Cheers Dipu On 7/30/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > > 2007-07-30 12:25:45:437 ERROR wicket.markup.html.WebPage > > [http-8080-Processor25] - Page [Page class = > > com.xmltravel.fab1.wicket.flights.FlightSearchResultPage , id = 1

Re: [Wicket-user] How to set a date on backing model obj from contents of drop down lists?

2007-07-31 Thread Igor Vaynberg
if you really want something that binds to the Date then create 3 models, each adjusting the specific portion of the date, for example: class YearModel implements IModel { private final IModel date; Object getObject() {return date.getObject().getYear();} void setObject(Object o) { date.getOb

Re: [Wicket-user] How to set a date on backing model obj from contents of drop down lists?

2007-07-31 Thread David Leangen
One suggestion: what about having a date pojo like: public class MyDate { get/setMonth() get/setDay() get/setYear() public Date getDate() { // translate object state into a Date object } } Then use PropertyModel to get/set the individual fields: Component myComponent = new Wh