Re: [Wicket-user] Authentication Tomcat - Wicket

2006-11-12 Thread Erik van Oosten
Hello Rik, Questions; Do you use a normal login form according to Acegi or do you use a Wicket login form? We use a signin page that is derived from the example in wicket-auth-roles-example. So it's a Wicket login form. Where do you put your authorization settings? The complete

Re: [Wicket-user] CheckBox and GridView

2006-11-12 Thread Ingram Chen
This reminds me bad experiences with check + gridview sometime ago.GridView does not support Item reuse. i.e. If any form validation error occur,user input are just disappeared. use with care! On 11/9/06, Frank Bille [EMAIL PROTECTED] wrote: On 11/9/06, Flemming Seerup [EMAIL PROTECTED] wrote

[Wicket-user] window name is not taken from PopopSetting's page map

2006-11-12 Thread Nili Adoram
Hi all, I've created a BookmarkableLink with PopupSettings: BookmarkablePageLink reportButton = new BookmarkablePageLink(reportLink, MyReport.class); PopupSettings popup = new PopupSettings(PageMap.forName(myReport), PopupSettings.SCROLLBARS); popup.setTarget(getReportUrl()); //a javascript

Re: [Wicket-user] Authentication Tomcat - Wicket

2006-11-12 Thread Rik van der Kleij
Hi Erik, Thanks for your reply. First I will arrange authentication with Acegi in mine application and then I will take a good look to the MetaDataRoleAuthorizationStrategy. Regards, Rik On 12-nov-2006, at 13:47, Erik van Oosten wrote: Hello Rik, Questions; Do you use a normal login

Re: [Wicket-user] window name is not taken from PopopSetting's page map

2006-11-12 Thread Johan Compagner
what does the link where you click on look like?Does it include the pagemap?johanOn 11/12/06, Nili Adoram [EMAIL PROTECTED] wrote:Hi all,I've created a BookmarkableLink with PopupSettings: BookmarkablePageLink reportButton = newBookmarkablePageLink(reportLink, MyReport.class);PopupSettings popup

Re: [Wicket-user] CheckBox and GridView

2006-11-12 Thread Igor Vaynberg
thats not true, see GridView.setItemReuseStrategy, IItemReuseStrategy, and ReuseIfModelsEqualStrategy-igorOn 11/12/06, Ingram Chen [EMAIL PROTECTED] wrote:This reminds me bad experiences with check + gridview sometime ago. GridView does not support Item reuse. i.e. If any form validation error

Re: [Wicket-user] Bug in Wicketbench?

2006-11-12 Thread Rik van der Kleij
Hi Joni, Do you have any idea why I'm getting the following error while opening a wicketpage: Can't preview file. Check your wicket:preview path. I have also wicket projects in Eclipse that do not have this error but I can't understand why this happens or see any difference with a project

[Wicket-user] edit xhtml Wicket files in Eclipse?

2006-11-12 Thread Potje rode kool
I want to use xhtml with Wicket but fail to let it work correctly, that the editor finds the tags from the wicket dtd.I am using Eclipse as IDE to develop. Any one who has an idea or experience with this?Thanks - Using Tomcat

[Wicket-user] Question about setting up request and response

2006-11-12 Thread Carfield Yim
I need to setup some parameter for the wicket test, I can see there is a method call setupRequestAndResponse so I guess I should override this one and do the setup there? However I don't know how as this method take no parameters. Would anyone tell me how to do?

Re: [Wicket-user] Question about setting up request and response

2006-11-12 Thread Iman Rahmatizadeh
I don't think that's what you're looking for. What exactly do you want to do ? On 11/13/06, Carfield Yim [EMAIL PROTECTED] wrote: I need to setup some parameter for the wicket test, I can see there is a method call setupRequestAndResponse so I guess I should override this one and do the setup

Re: [Wicket-user] Question about setting up request and response

2006-11-12 Thread Carfield Yim
Yes... i only browse the name but haven't actually read the document, sorry about that. In my code I will get some parameters using getRequest().getParameter() so I need to assert it at my test. After I really read the document, I guess what I really need to do in put a Map at

Re: [Wicket-user] Question about setting up request and response

2006-11-12 Thread Iman Rahmatizadeh
Yep, put them in a Map or set them one by one, using the component path.On 11/13/06, Carfield Yim [EMAIL PROTECTED] wrote:Yes... i only browse the name but haven't actually read the document, sorry about that.In my code I will get some parameters usinggetRequest().getParameter() so I need to

Re: [Wicket-user] window name is not taken from PopopSetting's pagemap

2006-11-12 Thread Nili Adoram
Yes, the generated link is: a href=/mypath//MyReport?wicket:bookmarkablePage=myReport:com.MyReport wicket:id=reportLink onclick=window.open(getReportUrl(), 'myReport', 'scrollbars=yes,location=no,menuBar=no,resizable=no,status=no,toolbar=no'); return false; id=reportLinkReport/a Johan

[Wicket-user] Too many open files

2006-11-12 Thread Nili Adoram
Hi all, When running our Wicket based web application as well Nagios on the same machine we come across Too many open files problem. We are using soft limit of 4096 and hard limit of 63536. However, we are monitoring the number of file handles open and it is gradually increasing. The files -

Re: [Wicket-user] Too many open files

2006-11-12 Thread Frank Bille
Have you tried upgrading to 1.2.3? There are some fixes for something like that in it AFAIK.FrankOn 11/13/06, Nili Adoram [EMAIL PROTECTED] wrote:Hi all,When running our Wicket based web application as well Nagios on the same machine we come across Too many open files problem.We are using soft

Re: [Wicket-user] CheckBox and GridView

2006-11-12 Thread Ingram Chen
Yes, I do try ReuseIfModelsEqualStrategybut... it does not work for me. I dig into source code and found GridView internally use another RepeatingView for rows, and it doesn't utilize IItemReuseStrategy. Maybe I just do wrong configuration...On 11/13/06, Igor Vaynberg [EMAIL PROTECTED] wrote:

Re: [Wicket-user] Not sure how to use DatePicker component

2006-11-12 Thread Carfield Yim
Actually it work nice for me after I understand how it work... I can see some complaint on the web and look like this just the problem of documentation and the way of change the default is not straigth forward? May be not worth to remove it? Not sure On 11/11/06, Eelco Hillenius [EMAIL

Re: [Wicket-user] window name is not taken from PopopSetting's pagemap

2006-11-12 Thread Erik van Oosten
Should this not also include a target attribute, e.g. target=myReport? Erik. Nili Adoram write: Yes, the generated link is: a href=/mypath//MyReport?wicket:bookmarkablePage=myReport:com.MyReport wicket:id=reportLink onclick=window.open(getReportUrl(), 'myReport',

[Wicket-user] generic bean support with webby: release 0.5

2006-11-12 Thread Chris M
Dear All, there's a new version of webby available, see http://r8fe.net/wordpress/. If generic bean (or: business object) manipulation and navigation is of interest to you, you might have a look and leave me a comment or an email. Best regards, Chris

Re: [Wicket-user] Too many open files

2006-11-12 Thread Eelco Hillenius
You probably run in development mode? Set it to development and your problems should be gone. context-param param-nameconfiguration/param-name param-valuedeployment/param-value /context-param Upgrading shouldn't solve any particular problems here I think,

[Wicket-user] same sign-in, multiple Applications?

2006-11-12 Thread Nick Johnson
I want to be able to have a nice, clean implementation of one authorization strategy for all of my applications such that once I've signed in for one application, I'm signed in for all of them. My rough plan was to create a concrete class implementing IAuthorizationStrategy, a SignIn.java and

Re: [Wicket-user] window name is not taken fromPopopSetting's pagemap

2006-11-12 Thread Nili Adoram
onComponentTag of Link does not write any target attribute. It looks like the bookmarkable page is not entered to the proper page map so renderHead in WebPage sets window name to wicket:default. Erik van Oosten wrote: Should this not also include a target attribute, e.g. target=myReport?