Re: [Wicket-user] enum not serializable?

2007-07-17 Thread verbal evasion
eelco, its cool. i found the problem. i attached my eclipse debugger to my jboss. i had to download the jdk5.0 source. anyway, i was returning a HashMap$values. i just wrapped it in an Array and it was fine with that. weird that values is not serializable. anyway, not a wicket problem, just my

Re: [Wicket-user] Wicket with JExcel

2007-07-17 Thread Edi
Hello Ayodeji Aladejebi, Thank you so much for your kind consideration regarding paginations. and my question is how to find the each cell name. for. eg. First cell name is A1 in the xl sheet, and its value may be integer/float/general. I want to get the cell name A1 and it's value. (we

[Wicket-user] closing ServletResponse stream/writer

2007-07-17 Thread jan_bar
Hi, the ServletResponse javadoc doesn't state if and when one should call getWriter().close() or getOutputStream().close(). I have a filter that writes comments after the request was processed. Wicket sometimes closes the response and sometimes not. For instance

Re: [Wicket-user] DojoTabContainer widget ID collision

2007-07-17 Thread Vincent Demay
Hi, NateBot2000 wrote: [[this is cross-posted from Wicket Stuff user forum -- I read back in history and saw the votes for shutting down WicketStuff forums]] Hello: Using Vincent Demay's DojoTabContainer, I'm getting a widget id collision on ID: tabId warning in Firebug for each

[Wicket-user] VOIPSWITCH (VPS softswitch 2.0.0.780/856/879/998 new stable versions..

2007-07-17 Thread apnavoip
Hi FRIENDS, Looking for best Billing Solution for your VoIP Company?? We offers the latest VOip switch Version (2.0.0.879) with all its latest modules with one year free support, ten hours remote training and full system and modules support (24/7) with installation + configuration in just

Re: [Wicket-user] DojoTabContainer widget ID collision

2007-07-17 Thread Jean-Baptiste Quenot
* Vincent Demay: NateBot2000 wrote: Using Vincent Demay's DojoTabContainer, I'm getting a widget id collision on ID: tabId warning in Firebug for each DojoSimpleContainer. However, if I use Firebug to search the DOM for the tab's ID, I can't find any duplicate ID's. For

Re: [Wicket-user] Wicket with JExcel

2007-07-17 Thread Ayodeji Aladejebi
I really dint get your question but from what i interpreted, if you want an easy way to map between the Cell values and thier names then, develop an interpreting matrix that maps A1, A2, B1 to the 2-Dimension model array that contains the values, For columns, you have A,B,C,D,E..AA (there is

Re: [Wicket-user] WicketTester and mocking up next page rendered.

2007-07-17 Thread Jean-Baptiste Quenot
* Craig Lenzen: I'm looking for some feedback as to an issue I'm having with the WicketTester. To start I'd like to point out that I'm using Spring and injecting my pages / components via the wicket spring project's component injector. Here is the situation, I have page A that has a

Re: [Wicket-user] closing ServletResponse stream/writer

2007-07-17 Thread Jean-Baptiste Quenot
* jan_bar: the ServletResponse javadoc doesn't state if and when one should call getWriter().close() or getOutputStream().close(). I have a filter that writes comments after the request was processed. Wicket sometimes closes the response and sometimes not. For instance

[Wicket-user] Wicket 1.3beta2, Ajax Google Checkout CSS help

2007-07-17 Thread jweekend
If you'd like to see some subtle yet effective Ajax with Wicket, in a real world (albeit simple), application have a look at our course booking page at http://jWeekend.co.uk jWeekend.co.uk . We are porting the site to Wicket 1.3beta2 and the booking page went live early yesterday AM. We were

Re: [Wicket-user] Wicket with JExcel

2007-07-17 Thread Edi
Hello Ayodeji Aladejebi, You already done, to select the particular file and load and view the file. that's fine. Now I want to validate each cell in easy manner. For example, if xl file contains 1000 fields, most of the fields not validated - unvalidated fields are colored. so i want to list

[Wicket-user] one component class , many markap

2007-07-17 Thread Дмитрий Ржевский
Hello All. Is it possible to create component which: 1) Component has one java class. 2) Component choose markup file depending on his state. Dmitry. - This SF.net email is sponsored by DB2 Express Download DB2

Re: [Wicket-user] WicketTester and mocking up next page rendered.

2007-07-17 Thread Craig Lenzen
The Spring injection is setup properly, for functional use and unit testing. The issue is, is that I should not have to worry about setting up page B dependencies when I'm testing page A. I should only have to worry about that dependency when it comes to actually testing page B. -Craig

Re: [Wicket-user] WicketTester and mocking up next page rendered.

2007-07-17 Thread Craig Lenzen
I guess saying I don't care about page B is a little harsh. I care that when the link is clicked that the next page to be rendered is page B, what I don't care about is that page B was actually rendered. So I don't think mocking up the page is the proper solution. Instead I would want to mock

Re: [Wicket-user] setVesible for the component after onEvent

2007-07-17 Thread James Law
Here's the pieces that I used. Sounds like Igor's approach is better, but here it is if you can't do it that way. in your css: .invisible{ display: none; } .visible{ display: inline; } Now, the component side (proficiencyChoice is a dropdown)

Re: [Wicket-user] DojoTabContainer widget ID collision

2007-07-17 Thread NateBot2000
Jean-Baptiste Quenot-3 wrote: I've seen that too, and it's harmless, you can safely ignore it. Oh good -- it didn't seem to be doing anything bad -- and the Firebug icon wasn't turning red. But still kind of weird. Maybe it's a dojo bug? Thanks for your help... NateBot2000 -- View

Re: [Wicket-user] one component class , many markap

2007-07-17 Thread Francisco Diaz Trepat - gmail
Dobre dien Dimitry, ya gabaru paruski chuchuit. Da, Ya dumayu ti moshes sdielaet. Can you spesify a bit more, there are some different ways to implement that. Panels, Fragments, etc. if I understand you correctly. Ochin priantna, Soius Nie Rushimy, f(t) On 7/17/07, Дмитрий Ржевский [EMAIL

Re: [Wicket-user] (no subject)

2007-07-17 Thread Rainey
- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now.

Re: [Wicket-user] Disabling Validation, but keeping updateFormComponentModels()

2007-07-17 Thread Fisher, Brice A
An additional question. Trying to do things the brute force way, I implemented the following in my form: @Override protected void validate() { Button b = findSubmittingButton(); if (b == updateButton) { super.validate(); // Additional validations... } else {

Re: [Wicket-user] Disabling Validation, but keeping updateFormComponentModels()

2007-07-17 Thread Igor Vaynberg
On 7/17/07, Fisher, Brice A [EMAIL PROTECTED] wrote: An additional question. Trying to do things the brute force way, I implemented the following in my form: @Override protected void validate() { Button b = findSubmittingButton(); if (b == updateButton) {

Re: [Wicket-user] Fw: Modal Window and Page Expired.

2007-07-17 Thread Laurent Brucher
I turned off cookies in FFox but that doesn't change anything :( As I previously said, the Ajax/ModalWindow sample in the wicket-examples works fine for me (deployed in the same Tomcat instance as my app). One difference I found with my environement is that all the URLs in the examples are

[Wicket-user] Wicket examples question

2007-07-17 Thread Kirk Is
So, at wicket-library.com/wicket-examples I see signin and signin2. Signin2 is the rememberme functionality I'm trying to emulate. When I click on view source, it seems like the functionality I want, the stuff the separates signin2 from signin, is lumped in

[Wicket-user] Wicket examples question

2007-07-17 Thread Kirk Israel
So, at wicket-library.com/wicket-examples I see signin and signin2. Signin2 is the rememberme functionality I'm trying to emulate. When I click on view source, it seems like the functionality I want, the stuff the separates signin2 from signin, is lumped in

Re: [Wicket-user] one component class , many markap

2007-07-17 Thread Eelco Hillenius
On 7/17/07, Igor Vaynberg [EMAIL PROTECTED] wrote: see component.getvariation() override that, then the markup file used is componentname_variation.html but the component hierarchy still has to match. if you want different hierarchies within the component then use fragments And for the

Re: [Wicket-user] Wicket examples question

2007-07-17 Thread Igor Vaynberg
On 7/17/07, Kirk Is [EMAIL PROTECTED] wrote: So, at wicket-library.com/wicket-examples I see signin and signin2. Signin2 is the rememberme functionality I'm trying to emulate. When I click on view source, it seems like the functionality I want, the stuff the separates signin2 from signin,

Re: [Wicket-user] Setting up project - images and stylesheets

2007-07-17 Thread landtuna
jonaqua said: ...and I run the application, the image will reference web/images/logo.png. However, if I just quickly view that HTML file, it will reference src/java/package/images/logo.png and the image link will be broken. I'd just use a wicket.markup.html.image.Image for each of the

Re: [Wicket-user] WicketTester and mocking up next page rendered.

2007-07-17 Thread Craig Lenzen
This concept might work ok if the link only goes to the same page every time it is clicked, but what if the link goes to a different page depending on presentation logic with in the page. I think you would be SOL in that case. -Craig Ingram Chen-2 wrote: We also suffer the same issues

[Wicket-user] wicket-dojo StylingWebMarkupContainer / StyleAttribute

2007-07-17 Thread NateBot2000
Hello: I would like to add setters for css style attributes left and top to V. Demay's DojoFloatingPane, which is a descendant of wicket-dojo StylingWebMarkupContainer. The javadoc for that class says: You can add css attribute on this container using the following behavior : Html attributes

Re: [Wicket-user] setVesible for the component after onEvent

2007-07-17 Thread kenixwong
sorry,igor... i cant get what u mean ... can u explain more? or show me some example? thanks igor.vaynberg wrote: in that case you have to call setvisible, but add the parent of the component to the ajaxrequesttarget instead -igor On 7/16/07, kenixwong [EMAIL PROTECTED] wrote:

[Wicket-user] Retrieve selected value from DropDown

2007-07-17 Thread Toscano
Hello, I have a huge form with a lot of dropdowns, and I'm using a CompoundPropertyModel. The form can also be changed between more than six languages, so everytime the user changes one value in one Dropdown, all the form is refreshed showing the DropDowns in the selected language. The problem

[Wicket-user] AjaxRequestTarget.addComponent for a child of ListItem

2007-07-17 Thread Mike03
Hello, I've seen the posting that refers to this wiki page http://cwiki.apache.org/WICKET/how-to-repaint-a-listview-via-ajax.html How to repaint a ListView with Ajax but my problem is a little different and I'm hoping there's a solution. I'm using wicket-1.2.6 I've got a ListView that renders

Re: [Wicket-user] setVesible for the component after onEvent

2007-07-17 Thread Igor Vaynberg
On 7/17/07, kenixwong [EMAIL PROTECTED] wrote: sorry,igor... i cant get what u mean ... can u explain more? or show me some example? thanks you gotta learn how to use the internets http://www.nabble.com/forum/Search.jtp?forum=13974local=yquery=visible+ajax+container try the first result

Re: [Wicket-user] Retrieve selected value from DropDown

2007-07-17 Thread Igor Vaynberg
On 7/17/07, Toscano [EMAIL PROTECTED] wrote: Hello, I have a huge form with a lot of dropdowns, and I'm using a CompoundPropertyModel. The form can also be changed between more than six languages, so everytime the user changes one value in one Dropdown, all the form is refreshed showing

Re: [Wicket-user] AjaxRequestTarget.addComponent for a child of ListItem

2007-07-17 Thread Igor Vaynberg
On 7/17/07, Mike03 [EMAIL PROTECTED] wrote: Hello, I've seen the posting that refers to this wiki page http://cwiki.apache.org/WICKET/how-to-repaint-a-listview-via-ajax.html How to repaint a ListView with Ajax but my problem is a little different and I'm hoping there's a solution. I'm

Re: [Wicket-user] setVesible for the component after onEvent

2007-07-17 Thread kenixwong
:( sorry , igor... everytime when i faced the problem, i sure will search from net. Just i not sure what u going to write as above matter... anyway, thanks for your fast reply and help... igor.vaynberg wrote: On 7/17/07, kenixwong [EMAIL PROTECTED] wrote: sorry,igor... i cant get what

Re: [Wicket-user] Retrieve selected value from DropDown

2007-07-17 Thread Toscano
Thank you for your fast answer! It makes sense. I made the following changes: CompoundPropertyModel: private Language defaultSystemLanguage; (with the correct gets/sets) Submit: System.out.println (LANGUAGE BY DEFAULT: + userInformation.getDefaultSystemLanguage().getLanguageID()); And now the

Re: [Wicket-user] setVesible for the component after onEvent

2007-07-17 Thread Igor Vaynberg
On 7/17/07, kenixwong [EMAIL PROTECTED] wrote: :( sorry , igor... everytime when i faced the problem, i sure will search from net. Just i not sure what u going to write as above matter... first search result is this http://www.nabble.com/Changing-visibility-via-ajax-tf1974532.html#a5418508

Re: [Wicket-user] Retrieve selected value from DropDown

2007-07-17 Thread Igor Vaynberg
On 7/17/07, Toscano [EMAIL PROTECTED] wrote: Thank you for your fast answer! It makes sense. I made the following changes: CompoundPropertyModel: private Language defaultSystemLanguage; (with the correct gets/sets) Submit: System.out.println (LANGUAGE BY DEFAULT: +

Re: [Wicket-user] Retrieve selected value from DropDown

2007-07-17 Thread Toscano
Thank you again. But I'm not very sure of what you are talking about... I declared the DropDowns that way so they are able to change the content for every language with every localization change. But as part of a Form with assigned CompoundPropertyModel, I supposed it should be easy to just map

Re: [Wicket-user] Fw: Modal Window and Page Expired.

2007-07-17 Thread 王磊
What i mean is not turn the cookie off in the browser. Just change the server session mode. You can refer http://tomcat.apache.org/tomcat-5.5-doc/config/context.html - Original Message - From: Laurent Brucher [EMAIL PROTECTED] To: wicket-user@lists.sourceforge.net Sent: Wednesday, July

Re: [Wicket-user] Retrieve selected value from DropDown

2007-07-17 Thread Igor Vaynberg
On 7/17/07, Toscano [EMAIL PROTECTED] wrote: Thank you again. But I'm not very sure of what you are talking about... I declared the DropDowns that way so they are able to change the content for every language with every localization change. But as part of a Form with assigned

Re: [Wicket-user] wicket-dojo StylingWebMarkupContainer / StyleAttribute

2007-07-17 Thread NateBot2000
Alrighty, I figured it out. Clean and very simple (let me know if there's a better way to do this): package com.***.web.dashboard; import org.wicketstuff.dojo.markup.html.floatingpane.DojoFloatingPane; import org.wicketstuff.dojo.widgets.StyleAttribute; public class DashboardPane extends

Re: [Wicket-user] wicket-dojo StylingWebMarkupContainer / StyleAttribute

2007-07-17 Thread Igor Vaynberg
On 7/17/07, NateBot2000 [EMAIL PROTECTED] wrote: Alrighty, I figured it out. Clean and very simple (let me know if there's a better way to do this): package com.***.web.dashboard; http://bash.org/?244321 -igor import org.wicketstuff.dojo.markup.html.floatingpane.DojoFloatingPane;

Re: [Wicket-user] wicket-dojo StylingWebMarkupContainer / StyleAttribute

2007-07-17 Thread NateBot2000
igor.vaynberg wrote: package com.***.web.dashboard; http://bash.org/?244321 -igor Dang, you got me. I work for com.microsoft. We're converting everything (and I mean everything) to Wicket... NateBot2000 -- View this message in context: