Re: DI in wicket

2011-11-12 Thread vela
Hi, Just like to use DAO pattern with Spring in wicket. If any other link for references would be of great help. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DI-in-wicket-tp3824880p4036039.html Sent from the Users forum mailing list archive at Nabble.com.

Re: DI in wicket

2011-11-11 Thread vela
Hi, Kindly find the stack trace below Root cause:java.lang.NullPointerException at sun.jdbc.odbc.JdbcOdbcDriver.getProtocol(Unknown Source) at sun.jdbc.odbc.JdbcOdbcDriver.knownURL(Unknown Source) at sun.jdbc.odbc.JdbcOdbcDriver.acceptsURL(Unknown Source) at

Re: DI in wicket

2011-11-11 Thread vela
Kindly find the exception thrown in the server console 12 Nov, 2011 11:58:54 AM org.apache.wicket.DefaultExceptionMapper internalMap SEVERE: Unexpected error occurred org.apache.wicket.WicketRuntimeException: Can't instantiate page using constructor 'public com.wicket.pages.IndexPage()'. Might

Re: DI in wicket

2011-11-11 Thread vela
Kindly find the exception thrown in the server console 12 Nov, 2011 11:58:54 AM org.apache.wicket.DefaultExceptionMapper internalMap SEVERE: Unexpected error occurred org.apache.wicket.WicketRuntimeException: Can't instantiate page using constructor 'public com.wicket.pages.IndexPage()'. Might

Re: DI in wicket

2011-11-09 Thread vela
Hi, I have done the configuration in web.xml. When I print the DAO reference, it is printing like org.apache.wicket.proxy.LazyInitProxyFactory$JdkHandler@f2164f But the error has been thrown like org.apache.wicket.WicketRuntimeException: Can't instantiate page using constructor 'public

Re: DI in wicket

2011-10-30 Thread vela@w...@gmail.com
Hi, I tried DI injection from the following the site http://th1rty7.blogspot.com/2008/08/wicket-spring-with-jdbc-configuration.html But I configured everything mentioned in the site and when I try to run it, I am getting the following exception. Kindly let me know what should be done to handle

Re: DI in wicket

2011-10-30 Thread vela
Hi, I have configured db configuration in conf/server.xml in tomcat. Is this fine or extra configuration has to be done. Context path=/Chicago Resourcename=jdbc/Chicago auth=Container driverClassName=com.mysql.jdbc.Driver type=javax.sql.DataSource

Re: Referring image using Resource Reference

2010-01-05 Thread vela
Hello again, Thanks its works fine -- View this message in context: http://old.nabble.com/Referring-image-using-Resource-Reference-tp27014229p27025529.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: Referring image using Resource Reference

2010-01-04 Thread vela
Hello again, In the project setup, the Page class and their corresponding html files are not placed in the same directory. The Page class are placed under the package com.image and their corresponding html files are placed inside the html directory under the context root. If I place the image

Re: TextField escape characters

2009-11-17 Thread vela
Hello again, Even setEscapeModelStrings() is set to false, the character ö is only displayed not the “R#246;sch” (R followed by ampersand followed by hash followed by 246 followed by seimcolon followed by sch ). In a web page subclass we have a text field and the characters “R#246;sch”

Re: Isssues in Modal Window display in IE8

2009-11-16 Thread vela
Hello again, How to resolve this issue, I am using wicket 1.3. How to fix it(Modal window appearing in IE8). -- View this message in context: http://old.nabble.com/Isssues-in-Modal-Window-display-in-IE8-tp26047156p26371269.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Isssues in Modal Window display in IE8

2009-11-16 Thread vela
Hello again, It is working fine with wicket 1.3.6. But is there any way to make modal window work in IE8 with wicket.1.3? -- View this message in context: http://old.nabble.com/Isssues-in-Modal-Window-display-in-IE8-tp26047156p26384964.html Sent from the Wicket - User mailing list archive at

Re: Isssues in Modal Window display in IE8

2009-11-16 Thread vela
Hello again, We use wicket 1.3 in the production environment. That's why, other wise no issues -- View this message in context: http://old.nabble.com/Isssues-in-Modal-Window-display-in-IE8-tp26047156p26385784.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Tree table with check box

2009-11-12 Thread vela
Hello again, The links and node are added in the TreeFragment class. But the TreeFragment is a private inner class in Treetable, could you tell how to use the TreeFragment to acheive this functionality -- View this message in context:

Re: User count

2009-11-09 Thread vela
Hello again, can't we count it using the wicket application, some thing like this in jsp %! int i= 0;% % out.println(People visited +(++i)); % -- View this message in context: http://old.nabble.com/User-count-tp26253854p26265729.html Sent from the Wicket - User mailing list archive at

Re: Tree table with check box

2009-11-03 Thread vela
Hello again, Please find the code below In Page class: IColumn columns[] = new IColumn[] { new PropertyTreeColumn(new ColumnLocation(Alignment.LEFT, 100, Unit.PERCENT),Check,userObject.name) {

Re: Tree table with check box

2009-11-03 Thread vela
Hello again, My requirement is exactly related to the point 1. you specified 1. If you want to add your checkbox directly beside the tree structure components you have to copy the code from the treetable class If you could elaborate a bit, it will be very much useful to try out. --

Re: Tree table with check box

2009-11-02 Thread vela
Hello again, Please find the below given code Page class: Treetable has been added in the Page class as follows IColumn columns[] = new IColumn[] { new PropertyTreeColumn(new ColumnLocation(Alignment.LEFT, Unit.PERCENT),Check,userObject.name) {

Re: Tree table with check box

2009-11-02 Thread vela
Hello again, Please find the below given code Page class: Treetable has been added in the Page class as follows IColumn columns[] = new IColumn[] { new PropertyTreeColumn(new ColumnLocation(Alignment.LEFT, Unit.PERCENT),Check,userObject.name) {

Re: Tree table with check box

2009-10-30 Thread vela
Hello again, I am getting only the check box and not the tree structure. Instead of markupcontainer i am using panels. Could you telll, how to get the tree structure along with check box in the same column. -- View this message in context:

Re: Generate dynamic tables

2009-10-30 Thread vela
Hello again, Could you tell how to add dynamic column in the DefaultDataTable -- View this message in context: http://old.nabble.com/Generate-dynamic-tables-tp26080641p26127900.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Generate dynamic tables

2009-10-29 Thread vela
Hello again, Could you tell, which class to use to achieve this functionality -- View this message in context: http://www.nabble.com/Generate-dynamic-tables-tp26080641p26112012.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Isssues in Modal Window display in IE8

2009-10-27 Thread vela
Hello again, Wicket 1.3 is used -- View this message in context: http://www.nabble.com/Isssues-in-Modal-Window-display-in-IE8-tp26047156p26074763.html Sent from the Wicket - User mailing list archive at Nabble.com. - To

Re: WhiteSpaces in PasswordTextField

2009-10-26 Thread vela
Hello again, How to change the default value to false -- View this message in context: http://www.nabble.com/WhiteSpaces-in-PasswordTextField-tp26047182p26056628.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Isssues in Modal Window display in IE8

2009-10-26 Thread vela
Hello again, We have a button in the form. On click of the button, the modal window will be displayed. This was actually working well in IE7 and Firefox. In IE8, when I click on the button, a new blank page is displayed with value http:/// in the address bar the comment The address is not

Re: Wicket tree

2009-04-28 Thread vela
Hello, I am facing the same issue. I can't able to get the selected node by this implemenation. I have the code like this TreeModel t = createTreeModel(); tree = new Tree(tree, t) { protected void onNodeLinkClicked(TreeNode node, AjaxRequestTarget target) {

Getting confirmation Javascript function value in wicket

2009-03-25 Thread vela
Hello, I have a AjaxFallbackLink and on click of it, the application performs some action. But the application should continue only based on the confirmation dialog value of the java script. Lets say, the code is like this. add(new AjaxFallbackLink(delete) { public void

Updating the model of PasswordTextField

2009-03-16 Thread vela
Hello, I have a PasswordTextField , AjaxFallbackLink, and some text field. On click of the AjaxFallback, i am able to reset the content of the other text files using setModelObject(values). But when i try to setModelObject for the PasswordTextField, it is not reflecting in the PasswordTextField.

AjaxFallbackButton not working when PasswordTextField is not entered

2009-03-13 Thread vela
Hello, I have a PasswordTextField, some text fields and AjaxFallbackButton in the form. If PasswordTextField is not entered and on sumbit of the AjaxFallbackButton, onSubmit(AjaxRequestTarget , ..) is not getting called. But when I remove the PasswordTextField and without entering the

Stop AjaxFallbackLink activity from the value of java script confirmation message

2009-03-13 Thread vela
Hello, I have a AjaxFallbackLink and on click of it, it will delete the value from the database. On click of the link, a java script confirmation dialog will be shown. If option 'yes' is selected, then deleting should happen, else if 'no' is chosen, then deletion should not take place. How to