Re: Error while importing package

2012-03-13 Thread Martin Grigorov
Check https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+1.5#MigrationtoWicket1.5-RemovedHeaderContributorandfriends. On Mon, Mar 12, 2012 at 11:50 AM, Sudeep sudeepshaky...@gmail.com wrote: I'm using Netbeans 7.1.1 and i installed Wicket plugin (Wicket 1.5.3) and having

Re: Initiating File Download through Ajax is not working

2012-03-13 Thread Rain... Is wet!
I'm using the AJAXDownload with success in my current project (Wicket 1.5.4). Just create an instance of the AJAXDownload, override getResourceStream to return your IResourceStream and getFileName (would recommend it) to return your desired filename. When done, add it to your AJAXSubmit

How does urlFor(..) work? (for dynamic resource, src= tag)

2012-03-13 Thread eugenebalt
I'm having a little trouble using /urlFor(..)/ Does every resource automatically get its own URL? Let's say I have a DynamicWebResource. My DynamicWebResource is defined as a dynamic PDF document *generated on the fly*. This resource needs to be dynamically specified as data= for an tag. I

Re: Dot in DataTable Columnheader - not allowed?

2012-03-13 Thread Rain... Is wet!
@Igor Vaynberg-2: I guess You're right. The error is outgoing from the PropertyColumns used in the DataTable. Unfortunately we already extended the Datatable way too far to just switch to another Column-Type (it's the time factor). But we will (hopefuly) remember that cicumstance in our next

Re: rough estimate of when wicket 1.6 will be released?

2012-03-13 Thread kamiseq
by 1.6 you mean 6, right? pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski@gmail.com __

Atmosphere multi-request

2012-03-13 Thread Pierre Goupil
Good afternoon, I'm currently trying to integrate Atmosphere Comet framework and Wicket. I used to have them working, but since the introduction of multi-request functionality, I have been unable to integrate both of them. So my question is simple: did anyone managed to have a working app with

Re: Atmosphere multi-request

2012-03-13 Thread Martin Grigorov
Hi Pierre, Can you give us a url that describes what multi-request is and what issues do you face with it ? On Tue, Mar 13, 2012 at 5:40 PM, Pierre Goupil goupilpie...@gmail.com wrote: Good afternoon, I'm currently trying to integrate Atmosphere Comet framework and Wicket. I used to have

WicketTester - getTagByWicketId

2012-03-13 Thread northar
Learning more about wickettests, i would need some help with getTagByWicketId(String wicketid). I can't get it to return anything else than null. Stuff like: tester.clickLink(panel:mycontainer:mylistview:0:link, true); tester.assertListView(panel:mycontainer:listview, testArray); and even

wicket checkboxe size

2012-03-13 Thread Carter, Isaac
Afternoon, Does anyone know if it is possible to increase the size of a checkbox in wicket ?? -Isaac Carter This e-mail and any attachments are intended only for the use of the addressee(s) named herein and may contain proprietary information. If you are

Re: wicket checkboxe size

2012-03-13 Thread Jeff Schneller
Sure. Use CSS. Sent from my iPad On Mar 13, 2012, at 4:48 PM, Carter, Isaac isaac.car...@mantech.com wrote: Afternoon, Does anyone know if it is possible to increase the size of a checkbox in wicket ?? -Isaac Carter This e-mail and any

RE: wicket checkboxe size

2012-03-13 Thread Carter, Isaac
Lol. I'm an idiot. Thanks. -Isaac -Original Message- From: Jeff Schneller [mailto:j...@mootus.com] Sent: Tuesday, March 13, 2012 4:53 PM To: users@wicket.apache.org Subject: Re: wicket checkboxe size Sure. Use CSS. Sent from my iPad On Mar 13, 2012, at 4:48 PM, Carter, Isaac

Wicket 1.4.20 Autocomplete error

2012-03-13 Thread magicjean
Hi, I've upgraded from 1.4.19 to 1.4.20: Now the autocomplete component shows an error in IE8: target is empty or no object, row 121 wicket-autocomplete.js Besides the error message, autocomplete seems to work normally. It doen's give an error in Firefox 9/10. -- View this message in

StackOverflow while getting browser info

2012-03-13 Thread André Schütz
Hi, I have the following code in my MyApplication class: {CODE} public void init() { super.init(); getRequestCycleSettings().setGatherExtendedBrowserInfo(true); getResourceSettings().setThrowExceptionOnMissingResource(false); ... } public Session newSession(Request request,

Re: Seeing sporadic ClassNotFoundExceptions after upgrading from 1.4.9 or 1.4.11

2012-03-13 Thread nhsoft.yhw
I have same problem also, This situation occasionally occurs. Nitnatsnok wrote 03-13 18:37:30.466[ WicketObjects.java:82 :WARN ] Could not resolve class [resources] java.lang.ClassNotFoundException: resources at

[Announce] Wicket Stuff Core 1.5.5 Released

2012-03-13 Thread Michael O'Cleirigh
Hello, Following the release of wicket 1.5.5 have cut a matching wicketstuff-core release. The artifacts have been promoted and are now available in maven central. They can be retrieved like this: dependency groupIdorg.wicketstuff/groupId artifactIdwicketstuff-tinymce/artifactId

Re: How to submit a result of dropdownchoice and a result of input text simultaneously?

2012-03-13 Thread xiaowang
I am totally new in wicket, can anyone help me? Now my code is: //dropdownbox add(new FeedbackPanel(dropdownfeedback)); DropDownChoiceString listSites = new DropDownChoiceString( sites, new PropertyModelString(this, selected),

AjaxSelfUpdatingBehavior .. page expired

2012-03-13 Thread mlabs
I am using a tab panel... On one tab I added an AjaxSelfUpdatingBehavior because I want the contents of the panel to refresh periodically. When I switch away from that tab to another tab, I get 'page expired' ... what am I doing wrong? TIA -- View this message in context:

Re: StackOverflow while getting browser info

2012-03-13 Thread Dan Retzlaff
Andre, check out this javadoc comment on Session#getClientInfo: * Note: Do strongnot/strong call this method from your custom {@link Session} constructor * because the temporary page needs a constructed {@link Session} to be able to work. Dan 2012/3/13 André Schütz andre-p...@gmx.de Hi, I

Re: How to submit a result of dropdownchoice and a result of input text simultaneously?

2012-03-13 Thread Dan Retzlaff
You need to give form components like DropDownChoice and TextField an IModel into which the submitted value will be placed. You did this with a PropertyModel for your DropDownChoice. You need to do similar for the TextField. Good luck, I hope you enjoy Wicket! On Tue, Mar 13, 2012 at 10:26 AM,