listview

2008-09-09 Thread Patel, Sanjay
Hi, I have a list of String that I want to display using ListView in three different columns of table. I don't want to split list into three lists and use three different ListViews. I just want to use only one ListView and display strings in three columns. e.g.

RE: listview

2008-09-09 Thread Patel, Sanjay
Thanks. This is what I want. -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2008 5:01 PM To: users@wicket.apache.org Subject: Re: listview use a gridview -igor On Tue, Sep 9, 2008 at 1:30 PM, Patel, Sanjay [EMAIL PROTECTED] wrote: Hi

How to get context path

2008-06-11 Thread Patel, Sanjay
Hi, my images in the application are in webapp/image folder. How to get Context Path in wicket so I can prepend this path to display the image. I am looking for something like this. getContextPath() + image/icon.gif; Please suggest how to do that. Thanks, Sanjay.

RE: how to pass parameters while setting page expired error page

2008-06-05 Thread Patel, Sanjay
:39 AM To: users@wicket.apache.org Subject: Re: how to pass parameters while setting page expired error page class SessionExpiredLoginPage extends LoginPage() { SessionExpiredLoginPage() { super(); info(xx) } } On Wed, Jun 4, 2008 at 6:25 PM, Patel, Sanjay

how to pass parameters while setting page expired error page

2008-06-04 Thread Patel, Sanjay
I want to redirect to LoginPage if session expires and want to show message that your session expired, please login again. Is there any way that I can pass parameters to LoginPage ?? getApplicationSettings().setPageExpiredErrorPage(LoginPage.class); Thanks, Sanjay.

RE: how to pass parameters while setting page expired error page

2008-06-04 Thread Patel, Sanjay
PM To: users@wicket.apache.org Subject: Re: how to pass parameters while setting page expired error page What param is that? What info do you want to pass in? On 6/4/08, Patel, Sanjay [EMAIL PROTECTED] wrote: I want to redirect to LoginPage if session expires and want to show message

RE: how to pass parameters while setting page expired error page

2008-06-04 Thread Patel, Sanjay
. Pleae login again., this); ... } ... -Original Message- From: Patel, Sanjay [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2008 12:26 PM To: users@wicket.apache.org Subject: RE: how to pass parameters while setting page expired error page I want to pass some

RE: WicketStuff Dojo Tooltip - Question

2008-05-15 Thread Patel, Sanjay
has anybody worked on Wicket Dojo Tooltip? -Original Message- From: Patel, Sanjay [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 10:57 AM To: users@wicket.apache.org Subject: WicketStuff Dojo Tooltip - Question I used WicketStuff Dojo Tooltip in my one page and it works fine

WicketStuff Dojo Tooltip - Question

2008-05-14 Thread Patel, Sanjay
I used WicketStuff Dojo Tooltip in my one page and it works fine. Right now the tooltip displays on mouseover event. Is there anyway I can display it on onClick event? On my other page I have a link which I am hiding/showing through ajax update (target.addComponent(..)) based on some condition.

RE: ListView is not gettting updated

2008-05-02 Thread Patel, Sanjay
Does anyone have any input on this? Help will be appreciated. Thanks, Sanjay -Original Message- From: Patel, Sanjay [mailto:[EMAIL PROTECTED] Sent: Thursday, May 01, 2008 8:52 AM To: users@wicket.apache.org Subject: RE: ListView is not gettting updated I set model of the radio

RE: ListView is not gettting updated

2008-05-02 Thread Patel, Sanjay
(radioModel2.getObject()); } else { radioGroup.setModelObject(radioModel3.getObject()); } item.add(radioGroup); On Fri, May 2, 2008 at 3:09 PM, Patel, Sanjay [EMAIL PROTECTED] wrote: Does anyone have any input

RE: ListView is not gettting updated

2008-05-01 Thread Patel, Sanjay
that one is still selected.. On 4/30/08, Patel, Sanjay [EMAIL PROTECTED] wrote: I already tried it but it is not working. I have to do following (which I don't want) to update the listView after I submit the form. listView.setModel(new Model((Serializable) updatedList)); -Original Message

ListView is not gettting updated

2008-04-30 Thread Patel, Sanjay
Hi, I am using ListView and and each item in the listview is RadioGroup. Now the problem is, If radio1 is selected and I select radio2 and submit the form the selection goes back to radio1. What is wrong with following code? final ListView listView = new ListView(abc, myList) {

RE: ListView is not gettting updated

2008-04-30 Thread Patel, Sanjay
, 2008 2:02 PM To: users@wicket.apache.org Subject: Re: ListView is not gettting updated listview.setreuseitems(true), read listview's javadoc -igor On Wed, Apr 30, 2008 at 10:59 AM, Patel, Sanjay [EMAIL PROTECTED] wrote: Hi, I am using ListView and and each item in the listview is RadioGroup

RE: help wanted for wicket autocomplete component

2008-04-16 Thread Patel, Sanjay
(java.lang.Object object) but in your renderChoice(*) do not call getTextValue!!! make another method called getStringValue() and return the actor name, then in getTextValue set the modelobject and return getStringValue(). I am not positive this will work. On Tue, Apr 15, 2008 at 2:23 PM, Patel, Sanjay

help wanted for wicket autocomplete component

2008-04-15 Thread Patel, Sanjay
Hi, I am trying to implement a simple auto complete AJAX text box which gives me the names of actors as I type in (by searching and getting the list of actors from database), and set the Model Object (which is Actor selected from the auto complete drop down) for the Panel (in which this

RadioChoice vs RadioGroup

2008-03-24 Thread Patel, Sanjay
I am new to Wicket. Can anyone explain about the difference between RadioChoice and RadioGroup with example and when to use which? Thanks, Sanjay

error occurs in IE when I click on button in wicket application deployed in JBoss

2008-03-20 Thread Patel, Sanjay
I developed small wicket application. It is address book kind of application and it has add new contact , edit, delete button. I deployed it in JBoss 4.0. It works good in FireFox but in IE when I click on any button it is not able find the page. Please see the attached screen shot so you have

RE: error occurs in IE when I click on button in wicket application deployed in JBoss

2008-03-20 Thread Patel, Sanjay
/filter filter-mapping filter-namewicket.test/filter-name url-pattern/*/url-pattern /filter-mapping /web-app -Original Message- From: Patel, Sanjay [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 9:18 AM To: users@wicket.apache.org Subject: error occurs

RE: error occurs in IE when I click on button in wicket application deployed in JBoss

2008-03-20 Thread Patel, Sanjay
is mounted, it works fine. -Original Message- From: Patel, Sanjay [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 1:23 PM To: users@wicket.apache.org Subject: RE: error occurs in IE when I click on button in wicket application deployed in JBoss Hi, I am trying to deploy a small