[Wicket-user] Is there anything like session settings

2006-09-24 Thread [EMAIL PROTECTED] Imam
Hi,I have bumped into a problem where i need to be able to configurethe settings we configure in the Application settings depending on the session.I know that modifying via getApplication().getSettings()... will cause the change to reflect at all the other sessions also. I want to change for only

[Wicket-user] Xml and its Table View

2006-09-02 Thread [EMAIL PROTECTED] Imam
Inspired by the excel and table view,here's the xml and table view example.You need to include the dom4j-1.6.jarand change the web.xml in wicket-examplesservlet servlet-nameXmlApplication/servlet-name servlet-classwicket.protocol.http.WicketServlet/servlet-class init-param

Re: [Wicket-user] Protecting Bookmarkable Pages

2006-08-30 Thread [EMAIL PROTECTED] Imam
Why dont you forward all these requests to a dummy page where you can take your decision making rather than depending on the authorization strategy solely.Inside the page you can handle requests such that the user is forwarded to a sign in page and after successful sign in he is taken to the

[Wicket-user] Javascript for some validators

2006-08-29 Thread [EMAIL PROTECTED] Imam
Hi,I was wondering if wicket will provide _javascript_ support for some of the simple validations we use.For example required validators and length validators.I think performing some of these validations in the client side will be better than performing them at the server side.Shams

[Wicket-user] Can we configure the Exception page using web.xml

2006-08-06 Thread [EMAIL PROTECTED] Imam
Hi,I just wanted to know whether anyone knows how we can configure the exception page to be shown using web.xmlI know that we can do it using WebApplication settings, but can it be done in the web.xml ??Thanx in advance.Shams

Re: [Wicket-user] Can we configure the Exception page using web.xml

2006-08-06 Thread [EMAIL PROTECTED] Imam
Ya i knew i could do that.I was just wondering if wicket does it automatically for me or not ?Thanx.Shams - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to

[Wicket-user] Example of using VelocityPanel

2006-07-29 Thread [EMAIL PROTECTED] Imam
Hi,I'm new to using velocity.I searched through the wicket-stuff site but didnt manage to find any example using VelocityPanel.Could someone please help me by providing an example of how to use this VelocityPanel component through wicket.ThanxShams

[Wicket-user] Page Expired Error on pages containing Link and PagingNavigator

2006-07-12 Thread [EMAIL PROTECTED] Imam
Hi,i seem to get the page expired error when a user tries to go to a previous page using the browsers back button.This error mainly occurs in pages using 'Link's Pages containing BookMarkablePageLinks dont seem to create trouble.The error also occurs in pages using PagingNavigators. Especially

Re: [Wicket-user] SSL

2006-07-11 Thread [EMAIL PROTECTED] Imam
The code had a small little fix:There is an extra condition in the if condition: else if( pageClass != null httpServletRequest.isSecure () !isSecurityRequired ) {Using the ONE_PASS method rendering strategy everything works fine now. Did you have to do the same?Yes had to use the One pass

Re: [Wicket-user] SSL

2006-07-10 Thread [EMAIL PROTECTED] Imam
Hi,I had a similar problemI decided not to use that RequiredSSL method.Instead i maintain an array of page classes that require https and used the following code. It worked fine for me. Hope it helps you. protected IResponseStrategy newResponseStrategy() { return new IResponseStrategy() {

[Wicket-user] Any method of using PagingNavigation ....

2006-07-08 Thread [EMAIL PROTECTED] Imam
Hello users,I wanted to know if wicket has support for using a component similar to PagingNavigation to tell it to selectively bring the items it will view in a Page depending on the page link clicked.My actual problem is the list (generated froma database) i will feed to the ListView component

Re: [Wicket-user] Any method of using PagingNavigation ....

2006-07-08 Thread [EMAIL PROTECTED] Imam
PROTECTED] wrote: Look at DataView from wicket-extensions.-Matej[EMAIL PROTECTED] Imam wrote: Hello users, I wanted to know if wicket has support for using a component similar to PagingNavigation to tell it to selectively bring the items it will view in a Page depending on the page link clicked. My