Re: [Wicket-user] Updates within Panels in datatable

2007-08-01 Thread salmas
); but this did not help. Do I need to create a custom strategy? If so what should I do in it? igor.vaynberg wrote: On 7/31/07, salmas [EMAIL PROTECTED] wrote: - Even though I do nothing in onSubmit (which I know does get called) the table is reloaded (button.getRequest() shows the request

[Wicket-user] Updates within Panels in datatable

2007-07-31 Thread salmas
I have a datatable in which each row contains two panels. In one panel I have a textfield and a radio button and in the other panel I have a button. So there can be many textfields and buttons. When the user clicks the button in panel 2 in one of the rows I need to read the values in the

[Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread salmas
I have to mimic an application which was written using javascript/XSLT in which changes in a table affecting single rows are managed by updating only the affected row(s). I believe that this is done by surrounding the row in a span. Is this possible in wicket? I am using a Datatable. Thanks --

Re: [Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread salmas
Igor, do I need the latest code for both wicket and extensions or just extensions? igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: Thanks Igor, How could I do this? thats easy, you start

Re: [Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread salmas
1.2.6 and wicket extensions 1.2.6. Do I need a newer version? igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: Thanks Igor, How could I do this? thats easy, you start by searching this list

[Wicket-user] navigating up from a frame

2007-07-18 Thread salmas
I am within the right frame of a frameset. The frameset has a tree in the left frame. When the user clicks most of the links in the tree I want to refresh the right frame. However, sometimes I want to navigate to a frameless page (tree gone and show another frame in the app). I don't know that I

Re: [Wicket-user] navigating up from a frame

2007-07-18 Thread salmas
; } public void detach(RequestCycle requestCycle) { System.out.println(detach called); } } igor.vaynberg wrote: On 7/18/07, salmas [EMAIL PROTECTED] wrote: I am within the right frame of a frameset. The frameset

Re: [Wicket-user] Textfield inside RadioChoice

2007-06-20 Thread salmas
Thanks, Igor, I switched to radiogroup/radio, however I still have issues because I want to add the textfield to just a few of the options, my options should look like tr wicket:id=options td input type=radio wicket:id=workflowoption /input /td td

Re: [Wicket-user] Textfield inside RadioChoice

2007-06-20 Thread salmas
I solved my issue by using setEscapeModelStrings(false) which works now and sending extra html to the label in the option. Thanks so much for your help. igor.vaynberg wrote: use radiogroup/radio components instead -igor On 6/19/07, Saad, Salma [EMAIL PROTECTED] wrote: I have to

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread salmas
It's not a case of an unknown reference causing the not serializable exception. I know which object is not serializable and it is the concrete proxy object created by WebLogic for my remote EJB. I ended up checking if I was in development mode and then using a transient variable and then using a

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread salmas
Eelco, I realized that you are recommending using Spring or looking up the bean on the fly some other way but I am working for a place where Spring is not part of the approved stack and they have an established way that access to EJB's is coded. I am a contracter here and I have to do things

Re: [Wicket-user] Wicket 1.2.6 Development mode serialization checks and remote EJB's

2007-06-07 Thread salmas
It would be a simple thing to look up the bean in each method in the service locater as versus keeping a reference. However, this is not how the existing service locaters here have been coded and they've been clear about wanting the new stuff to mimic the old stuff. The best way to solve the