Re: [Wicket-user] wicket performance

2007-04-19 Thread Francisco Diaz Trepat - gmail
Zdrasztbuite Gaspadin Maksimov. And hello to everyone else. I am working with some coworkers in different demos of web-frameworks to evaluate the best suited for us. I started with Struts2 and before one colleague almost drops Wicket I took in the challenge of building the demo, and it is

Re: [Wicket-user] What is Component Versioning (isVersioned())

2007-04-19 Thread Francisco Diaz Trepat - gmail
, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hello everyone, Can someone explain or guide me towards what is the meaning of a component being versioned or not? f(t) - This SF.net email is sponsored by DB2

[Wicket-user] DropDownChoice from ResourceBundles

2007-04-23 Thread Francisco Diaz Trepat - gmail
Hi everyone, I was wondering if there is a more automatic way of building a DropDownChoice out of resource bundles. Here is the case: 1- I have form inside a panel, which in turn has a dropdownchoice that has to be built with options on a resource bundle for i18n reasons. In this case

Re: [Wicket-user] DropDownChoice from ResourceBundles

2007-04-23 Thread Francisco Diaz Trepat - gmail
(object o) { return val.get(o); } getidvalue(object o) { return o.tostring(); } }); } map map=new hashmap(); map.put(1, relationships.single); ... add(new mappeddropdownchoice(id,map) { boolean localizeDisplayValues() { return true; }}); -igor On 4/23/07, Francisco Diaz Trepat - gmail

[Wicket-user] Setting Visible (setVisible) inside onAttach(). Is this Right?

2007-04-24 Thread Francisco Diaz Trepat - gmail
Hi, I have this working code. But I feel I'am mistaking and this is not the most apropiate place for it. Very simple, a logout panel (just a link) that on attached sets itself visible or not. Here is the code. public class LogoutPanel extends BasePanel { /** Creates a new instance of

Re: [Wicket-user] Setting Visible (setVisible) inside onAttach(). Is this Right?

2007-04-24 Thread Francisco Diaz Trepat - gmail
getWicketSession().isUserLoggedIn(); } imho that is better -igor On 4/24/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hi, I have this working code. But I feel I'am mistaking and this is not the most apropiate place for it. Very simple, a logout panel (just a link) that on attached

Re: [Wicket-user] Setting Visible (setVisible) inside onAttach(). Is this Right?

2007-04-24 Thread Francisco Diaz Trepat - gmail
Great, thanks Igor. On 4/24/07, Igor Vaynberg [EMAIL PROTECTED] wrote: yes, any time the component is rendered -igor On 4/24/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Excelent. That means that isVisible is called every page refresh? Thanks On 4/24/07, Igor Vaynberg

[Wicket-user] Validation of Date Range with DateValidator.

2007-04-24 Thread Francisco Diaz Trepat - gmail
Hi again group, I have the following problem. I use a DateValidator.range(min, max) to add a validation to a text field. Everything works fine, but as soon as I change the locale to german, french, or italian, it does not validate again. It keeps validating wether or not is required but not the

[Wicket-user] Logging Out (What to do with the session)

2007-04-24 Thread Francisco Diaz Trepat - gmail
Hello everyone, I was wondering for a proper way to handle sessions and logging in and out of a wicket application in general. The thing is as follows. I have a Session called WicketSession, inside of which I use a CORBA BUISINESS object labeled m_cSession to do a Login. WicketSession has the

Re: [Wicket-user] Logging Out (What to do with the session)

2007-04-24 Thread Francisco Diaz Trepat - gmail
RedirectRequestTarget(url)); } something like that -igor On 4/24/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hello everyone, I was wondering for a proper way to handle sessions and logging in and out of a wicket application in general. The thing is as follows. I have a Session called

Re: [Wicket-user] Logging Out (What to do with the session)

2007-04-24 Thread Francisco Diaz Trepat - gmail
Great, both of them worked. Only this: getRequestCycle().setRequestTarget(new RedirectRequestTarget(url)); On 4/24/07, Eelco Hillenius [EMAIL PROTECTED] wrote: onclick() { final string url=urlfor(HomePage.class); getsession().invalidate(); getrequestcycle().pushTarget(new

Re: [Wicket-user] Logging Out (What to do with the session)

2007-04-24 Thread Francisco Diaz Trepat - gmail
In the message that I sent I am sure that the text that Igor sent was included. if not here it is: Igor Vaynberg wrote:: onclick() { final string url=urlfor(HomePage.class); getsession().invalidate(); getrequestcycle().pushTarget(new RedirectRequestTarget(url)); } Only this:

[Wicket-user] Good Tutorial on core wicket

2007-05-03 Thread Francisco Diaz Trepat - gmail
Hello everyone, I am about to buy this book called pro wickethttp://www.amazon.com/Pro-Wicket-Experts-Voice-Java/dp/1590597222/ref=pd_bbs_sr_1/103-4798570-8657439?ie=UTF8s=booksqid=1178205890sr=8-1 . But until it gets here (Argentina) would anyone point me in the right direction to read

Re: [Wicket-user] Good Tutorial on core wicket

2007-05-03 Thread Francisco Diaz Trepat - gmail
good. -igor On 5/3/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hello everyone, I am about to buy this book called pro wicket http://www.amazon.com/Pro-Wicket-Experts-Voice-Java/dp/1590597222/ref=pd_bbs_sr_1/103-4798570-8657439?ie=UTF8s=booksqid=1178205890sr=8-1 . But until

Re: [Wicket-user] Good Tutorial on core wicket

2007-05-03 Thread Francisco Diaz Trepat - gmail
Right, I'll start to compile things. On 5/3/07, Igor Vaynberg [EMAIL PROTECTED] wrote: as far as models go http://cwiki.apache.org/confluence/display/WICKET/Working+with+Wicket+models -igor On 5/3/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: I will be glad to help out

Re: [Wicket-user] Good Tutorial on core wicket

2007-05-03 Thread Francisco Diaz Trepat - gmail
/Working+with+Wicket+models -igor On 5/3/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: I will be glad to help out in any way. Here are my thoughts to the community. If we could talk about core wiket ideas and implementations, for instance: Models (Concept

Re: [Wicket-user] Good Tutorial on core wicket

2007-05-03 Thread Francisco Diaz Trepat - gmail
us for clarifications/reviews. my 2c. -igor On 5/3/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Can we vote on this issue? can I call this an issue? Igor gracefully pointed me to the Model article in the wiki, but this article is mostly Object Structure, and How to Apply

Re: [Wicket-user] Good Tutorial on core wicket

2007-05-03 Thread Francisco Diaz Trepat - gmail
Right. I'll take this last mail to respond others as well. Sorry to hear your book is still on production as I've read some great articles and blogs and I was looking foward to reading the book. But nevertheless it seams very positive that the reason is so many fixes and upcoming good features.

[Wicket-user] How may I access a Panel A from another Panel B (Ajax)?

2007-05-04 Thread Francisco Diaz Trepat - gmail
Hello, I have two panels, one that is mostly a form for login (user/pass +button) and the other panel is just a link (onClick==logou). Now I changed the button for the login form to an ajax button. Everythig works fine. The thing is that I had a code something like this in the logout panel.

Re: [Wicket-user] How may I access a Panel A from another Panel B (Ajax)?

2007-05-04 Thread Francisco Diaz Trepat - gmail
) { target.add(b); target.add(a); } } b=new MyLogoutPanel(...); } -igor On 5/4/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hello, I have two panels, one that is mostly a form for login (user/pass +button) and the other panel is just a link (onClick==logou

[Wicket-user] Too much spam on the wicket-user list

2007-05-08 Thread Francisco Diaz Trepat - gmail
What is going on? Apart from reporting the spam to my local google account, is there a procedure for reporting it to the mailing list server? Very, ultra, super, low priority question. Cheers, f(t) - This SF.net email is

Re: [Wicket-user] Too much spam on the wicket-user list

2007-05-08 Thread Francisco Diaz Trepat - gmail
. We already have spam filters set high etc. Apache is much better in filtering, so I'm afraid we just have to be patient until we move the user list there (should be soon if all goes well). Eelco On 5/8/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: What is going on? Apart from

[Wicket-user] Struts 2 Vs. Wicket (Need some highlights)

2007-05-08 Thread Francisco Diaz Trepat - gmail
Guys I need some points I could talk to highlight Wicket over Struts 2 in a professional matter. Inside I'll think wicket rulz and struts sucked and know struts-2 sucks a little less. But still. Can you please contribute to make some sounded statements that would better point out Wicket over

Re: [Wicket-user] Too much spam on the wicket-user list

2007-05-09 Thread Francisco Diaz Trepat - gmail
Excelent ! ^_^ On 5/9/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Hope is soon too. How is the Apache incubation going, by the way? Getting close we hope :) Eelco - This SF.net email is sponsored by DB2 Express

Re: [Wicket-user] Struts 2 Vs. Wicket (Need some highlights)

2007-05-09 Thread Francisco Diaz Trepat - gmail
I haven't program that much on swing, but is it wicket so much like swing. I think they share the new Component and add(new Component()) etc. But other than that... Could it be possible than they share some concept like nested components but that with HTML not wicket. I don't see how a mapping

[Wicket-user] Date Validation occured on formatted field (dd.MM.yyyy)

2007-05-15 Thread Francisco Diaz Trepat - gmail
Hi I have the following TextField and DatePicket. When I submit I get a validation of type: '15.05.1959' is not a valid Date. //create textfield - validate it with the Date type TextField dateOfBirth = new TextField(dateOfBirth, Date.class); //add a validator for range

Re: [Wicket-user] Tapestry vs. Wicket

2007-05-15 Thread Francisco Diaz Trepat - gmail
Elco is at it but last time we asked him I think he said something about 2/3rds. f(t) On 5/15/07, craigdd [EMAIL PROTECTED] wrote: I started looking at tapestry today, for some reason through out all my webapp development experience I never have taken a look at it. With that said I see a

[Wicket-user] How to format a TextField to get a valid Date

2007-05-16 Thread Francisco Diaz Trepat - gmail
Hi can some one point me on how to format a text field to get a date like ' dd.MM.yy' and then, when submitting the form get a clean pass? you see I am getting a not a valid date message. regards, f(t) - This SF.net email

[Wicket-user] I AM NOT RECEIVING THE MAILING LIST ANYMORE

2007-05-16 Thread Francisco Diaz Trepat - gmail
I just read a reply from Chuck about a DateTextField. Sorry guys I didn't get the mail. but I read it on Nabble. cheers, f(t) - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2

[Wicket-user] Have to click 2 times to get my search results

2007-05-29 Thread Francisco Diaz Trepat - gmail
Hi all, I have the following behavior: On one side of a Page I have a list of links (acting as a menu :P) that is created by building links by obtaining the page class NameOfThePage.class. That gives me the url:

Re: [Wicket-user] Have to click 2 times to get my search results

2007-05-30 Thread Francisco Diaz Trepat - gmail
shouldn't change johan On 5/29/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hi all, I have the following behavior: On one side of a Page I have a list of links (acting as a menu :P) that is created by building links by obtaining the page class NameOfThePage.class

Re: [Wicket-user] Have to click 2 times to get my search results

2007-06-01 Thread Francisco Diaz Trepat - gmail
, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Johan many thanks for answering I think so. Here is the structure of the code: 1) A panel that contains a Form (fields name and lastName) and a Table (PageableListView). 2) A small SearchPage like this: public DossierSearch

[Wicket-user] AJAX Button on my Form inside a Panel needs 2 clicks to do a search

2007-06-05 Thread Francisco Diaz Trepat - gmail
Hello every one, I have a page that uses a panel (code ahead) that has a form with an AJAX button, it works fine, but some times I have to click on the Search button 2 times to make it work. I think it has to do with URLs or something because when it happens it changes the url. The code for the

Re: [Wicket-user] wicket did not make the grade.

2007-06-05 Thread Francisco Diaz Trepat - gmail
Sorry to barge in, but... I what I really don't get is: Is these science or fiction? Because if those are the kind of arguments... Then I must agree with Peter, its a waste of time, and just say that. They don't see Struts-2 for what it is, they don't see Wicket for what it is. What is the

Re: [Wicket-user] wicket did not make the grade.

2007-06-05 Thread Francisco Diaz Trepat - gmail
Is it possible to agree more with this post? f(t) On 6/5/07, James McLaughlin [EMAIL PROTECTED] wrote: Hi Florian, To be honest, you should have titled this post My team did not make the grade. There are many developers in the world whose skill and ambition rise little above cut and paste

[Wicket-user] AJAX Button on my Form inside a Panel needs 2 clicks to do a search

2007-06-06 Thread Francisco Diaz Trepat - gmail
Sorry but I cannot find what the problem is. I've search Nabble. - Hello every one, I have a page that uses a panel (code ahead) that has a form with an AJAX button, it works fine, but some times I have to click on the Search button 2 times to make it work. I

[Wicket-user] Click Framework

2007-06-06 Thread Francisco Diaz Trepat - gmail
Hi guys, can I have some of your thoughts on the Click Framework? f(t) - 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

Re: [Wicket-user] Click Framework

2007-06-06 Thread Francisco Diaz Trepat - gmail
asked the developers, but they did not see the advantage of doing click the model binding. click uses velocity, wicket html. I prefer the wicket way. Francisco Diaz Trepat - gmail wrote: Hi guys, can I have some of your thoughts on the Click Framework? f(t

Re: [Wicket-user] AJAX Button on my Form inside a Panel needs 2 clicks to do a search

2007-06-06 Thread Francisco Diaz Trepat - gmail
-ajax js files are in the head section. Another thing I would suggest is using Bookmarkable links in your menu for Dossier search. You are using regular links, and that is why your url changes. best, jim On 6/6/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Here is the video

Re: [Wicket-user] Click Framework

2007-06-06 Thread Francisco Diaz Trepat - gmail
window and wants to edit another entity. Will you not forget to remove the state from session? All model 2 applications I've seen leaked somehow when it went to session state. And it was not nice numbers. It's all about state management. -Matej On 6/6/07, Francisco Diaz Trepat - gmail [EMAIL

Re: [Wicket-user] extending and reusing form (and eventually any component)

2007-06-06 Thread Francisco Diaz Trepat - gmail
Diego I have been encapsulating functionality of a Demo app into panels and worked preaty good. A Login panel can then be added wherever and whenever we needed. f(t) On 6/6/07, diego [EMAIL PROTECTED] wrote: Hi, i have an inner form that i want to modularize (the class and the html), but the

[Wicket-user] Pro Wicket = big tutorial of wicket 1.2. Elco come on man... ; -)))

2007-06-08 Thread Francisco Diaz Trepat - gmail
Although it will come in handy to some extend to my colleagues and me, I think it is time to once again put some pressure on Elco. Come on man, please get your book out. I think my first project on Wicket will be a Wicket in Action Countdown, as the http://iphonecountdown.com/ ;-) How is the

[Wicket-user] AjaxSubmitButton changing Button's Name/Displayed Text/etc

2007-06-08 Thread Francisco Diaz Trepat - gmail
hi all, Anybody knows how to change the displayed name of an AjaxSubmitButton? I just tried to do a .setMode(new ResourceModel(bla bla But it didn't work. I have an input: input type=submit value=create wicket:id=createButton with the following code: //create the ajax submit button

Re: [Wicket-user] AJAX Button on my Form inside a Panel needs 2 clicks to do a search

2007-06-08 Thread Francisco Diaz Trepat - gmail
, and that is why your url changes. best, jim On 6/6/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Here is the video. It is .AVI file made with CamStudio, an Open-source project. and it is inside a rar. f(t) On 6/6/07, James McLaughlin [EMAIL PROTECTED] wrote: Hi

Re: [Wicket-user] AJAX Button on my Form inside a Panel needs 2 clicks to do a search

2007-06-11 Thread Francisco Diaz Trepat - gmail
in the page. Also, you might want to upgrade to 1.2.6 and see if that fixes the issue. best, jim On 6/8/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: James, sorry I took so long to respond. I tried to put PageLinks in the menu. And I could swear that the frequency of error drop

Re: [Wicket-user] AjaxSubmitButton changing Button's Name/Displayed Text/etc

2007-06-12 Thread Francisco Diaz Trepat - gmail
Sorry, right. _ Wicket Version 1.2.5 thanks Jean Baptiste. f(t) On 6/11/07, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Francisco Diaz Trepat - gmail: Anybody knows how to change the displayed name of an AjaxSubmitButton? I just tried to do a .setMode(new ResourceModel(bla bla

Re: [Wicket-user] AjaxSubmitButton changing Button's Name/Displayed Text/etc

2007-06-12 Thread Francisco Diaz Trepat - gmail
One more thing. Do I get version 1.3 through the svn? How long to the beta 2 in the incubator? f(t) On 6/11/07, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Francisco Diaz Trepat - gmail: Anybody knows how to change the displayed name of an AjaxSubmitButton? I just tried to do

Re: [Wicket-user] AjaxSubmitButton changing Button's Name/Displayed Text/etc

2007-06-12 Thread Francisco Diaz Trepat - gmail
thanks, f(t) On 6/12/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Tue, 12 Jun 2007, Francisco Diaz Trepat - gmail wrote: One more thing. Do I get version 1.3 through the svn? Or http://www.wicketstuff.org/maven/repository/org/apache /wicket/wicket-jdk14/ (examples one level above

[Wicket-user] Best way to set the focus on a form's TextField

2007-06-14 Thread Francisco Diaz Trepat - gmail
Hi all, I have a login form and want to set the focus on the user name field as soon as it is displayed. As it is to say on the document load event. I've read some on nabble but it didn't quite understand the best way. Can someone guide me a bit? Best regards, f(t) ps: elco elco please the

Re: [Wicket-user] Best way to set the focus on a form's TextField

2007-06-15 Thread Francisco Diaz Trepat - gmail
] [mailto: [EMAIL PROTECTED] Behalf Of *Francisco Diaz Trepat - gmail *Sent:* 14 June 2007 21:58 *To:* wicket-user@lists.sourceforge.net *Subject:* [Wicket-user] Best way to set the focus on a form's TextField Hi all, I have a login form and want to set the focus on the user

Re: [Wicket-user] Convertes Hell (Wicket 1.2.x)

2007-06-15 Thread Francisco Diaz Trepat - gmail
I use the wicket-datetime package. in there, you'll find the DateTextField: DateTextField myDate = DateTextField.forDatePattern(myDate, dd.MM.yy); wicket.extensions.markup.html.form.DateTextField Hope this help, f(t) On 6/15/07, Paolo Di Tommaso [EMAIL PROTECTED] wrote: I need to replace

Re: [Wicket-user] Convertes Hell (Wicket 1.2.x)

2007-06-19 Thread Francisco Diaz Trepat - gmail
Nie magu panimayet stonibuts. cannot understand anything. f(t) On 6/19/07, Andrew Klochkov [EMAIL PROTECTED] wrote: Eelco Hillenius wrote: The one which was mentioned is org.apache.wicket.extensions.markup.html.form.DateTextField Here is some code from 1.3 beta 1: public

Re: [Wicket-user] Convertes Hell (Wicket 1.2.x)

2007-06-20 Thread Francisco Diaz Trepat - gmail
kanieshna, Ya ochin intersna Я заинтересован About the jira I meant. f(t) On 6/20/07, Andrew Klochkov [EMAIL PROTECTED] wrote: Francisco Diaz Trepat - gmail wrote: Nie magu panimayet stonibuts. :-) Russian Wicket Users Group - interested? cannot understand anything. f(t) what do you

[Wicket-user] Wicket MADE the grade

2007-06-20 Thread Francisco Diaz Trepat - gmail
Hi guys, from a discarded framework to the choice in hand. Wicket was chosen by my company to start a migration project of its products. Is there a way to get latest 1.3 beta2 with java 1.5? to get started... ;-) Thanks to ALL of you for all your help. ELCO... THE BOOK MAN. COME ON!!!

Re: [Wicket-user] Wicket MADE the grade

2007-06-20 Thread Francisco Diaz Trepat - gmail
frameworks where you considering. -Craig Francisco Diaz Trepat - gmail wrote: Hi guys, from a discarded framework to the choice in hand. Wicket was chosen by my company to start a migration project of its products. Is there a way to get latest 1.3 beta2 with java 1.5? to get started

Re: [Wicket-user] Wicket MADE the grade

2007-06-21 Thread Francisco Diaz Trepat - gmail
sleeves /after looking at a profiler/ to tune the other 5% of your site (probably the home page and a handful of common destinations). Francisco Diaz Trepat - gmail wrote: Yes, thanks. We evaluated the following frameworks: Struts-2 (reviewed by me) SpringMVC (reviewed by a coworker) JFS

Re: [Wicket-user] How to best deffend models and entity classes

2007-06-25 Thread Francisco Diaz Trepat - gmail
Guys, thanks for the answers but I don't think I explained my self.: I understad this is a solution. But how may I better defend models in general. What would be the purpose of a class with only getters and setters besides adding a new layer to the software? public class Person{ String

Re: [Wicket-user] How to best deffend models and entity classes

2007-06-25 Thread Francisco Diaz Trepat - gmail
and microseconds of calls, assigment operations are very light. f(t) On 6/25/07, severian [EMAIL PROTECTED] wrote: Francisco Diaz Trepat - gmail wrote: What would be the purpose of a class with only getters and setters besides adding a new layer to the software? Well (in the absence of further

[Wicket-user] Xml output with extra lines after removeNodeChild

2007-06-25 Thread Francisco Diaz Trepat - gmail
Hi guys, sorry to be asking this here. But I'm having trouble googling this out. Here is the problem. Given an xml document. I read it on my app and manipulate it, then save it when I am done. When I remove a child, the output files shows all the extra lines from the formatting and indent. So

[Wicket-user] How to manage state / session for different windows/tabs

2007-06-29 Thread Francisco Diaz Trepat - gmail
Hi guys, I have the following task. I'm building a simple calculation page, but for sake of simplicity lets say I'm doing the adding link sample we all know. I might need to be able to open two browsers or tabs to be able to do parallel calculations and compare both results. Lets say click 3

Re: [Wicket-user] How to manage state / session for different windows/tabs

2007-06-29 Thread Francisco Diaz Trepat - gmail
PROTECTED] wrote: It is possible what you have one page instance/version opened in three tabs. How does the link you are clicking on when creating new tabs look like? -Matej On 6/29/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: 1.3 incubator beta and currently STILL drooling

Re: [Wicket-user] How to manage state / session for different windows/tabs

2007-06-29 Thread Francisco Diaz Trepat - gmail
1.3 incubator beta and currently STILL drooling for the beta 2. I'll check it out. Thanks igor. On 6/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote: what version of wicket are you using? see IPageSettings.setAutomaticMultiWindowSupport(boolean) -igor On 6/29/07, Francisco Diaz Trepat

Re: [Wicket-user] How to manage state / session for different windows/tabs

2007-06-29 Thread Francisco Diaz Trepat - gmail
Excelent. Thanks Igor. On 6/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 6/29/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: I think you misunderstood. First of all, I don't have any problems. Is just a question, that is intended to get insight in this matter. If you

Re: [Wicket-user] How to manage state / session for different windows/tabs

2007-06-29 Thread Francisco Diaz Trepat - gmail
in case you are experiencing any problems, you should turn on multiwindow support (manually) even for SecondLevelCacheSessionStore. -Matej On 6/29/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Excelent. Thanks Igor. On 6/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 6/29/07

Re: [Wicket-user] wicket-based dashboard

2007-07-03 Thread Francisco Diaz Trepat - gmail
That looks pretty good. On 7/3/07, Nathan Beach [EMAIL PROTECTED] wrote: With some simple changes to ModalWindow, I'm able to get the basics to work (see attached gif). Just turned off the masking, added x and yOffsets, and altered the loadPosition function to take settings parameters rather

[Wicket-user] Autocomplete field sends me right to Expired error page (v.1.3 beta 1)

2007-07-06 Thread Francisco Diaz Trepat - gmail
Hi guys, I have an Autocomplete field. As soon as I hit a key the following url gets loaded. http://localhost:8084/ArgoWeb2/?wicket:bookmarkablePage=%3Aorg.apache.wicket.markup.html.pages.PageExpiredErrorPage I copy the code from the example at:

[Wicket-user] Autocomplete field sends me right to Expired error page (v.1.3 beta 1)

2007-07-10 Thread Francisco Diaz Trepat - gmail
Hello, I am still having this problem and I don't know what could be. Can someone help? -- Forwarded message -- From: Francisco Diaz Trepat - gmail [EMAIL PROTECTED] Date: Jul 6, 2007 5:52 PM Subject: Autocomplete field sends me right to Expired error page (v.1.3 beta 1

Re: [Wicket-user] Autocomplete field sends me right to Expired error page (v.1.3 beta 1)

2007-07-10 Thread Francisco Diaz Trepat - gmail
Ok. I'll do that. f(t) On 7/10/07, Johan Compagner [EMAIL PROTECTED] wrote: make a test case and attach that to a jira issue. johan On 7/10/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hello, I am still having this problem and I don't know what could be. Can someone help

[Wicket-user] Autocomplete Question (igor?)

2007-07-12 Thread Francisco Diaz Trepat - gmail
Hi all, I wanted to see if I could add an autocomplete that displays a little table (3 columns). It is a simple locations table that shows a ZIPCODE a Provine/City and a Canton/Kanton (CH) field. I already have it working with the default IAutoCompleteRenderer, that renders an Unordered list:

[Wicket-user] Please anyone, a hint?

2007-07-13 Thread Francisco Diaz Trepat - gmail
Hi all, I wanted to see if I could add an autocomplete that displays a little table (3 columns). It is a simple locations table that shows a ZIPCODE a Provine/City and a Canton/Kanton (CH) field. I already have it working with the default IAutoCompleteRenderer, that renders an Unordered list:

Re: [Wicket-user] Please anyone, a hint?

2007-07-13 Thread Francisco Diaz Trepat - gmail
Ok. On 7/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: why dont you create a quickstart so we can run it real quick and see -igor On 7/13/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hi all, I wanted to see if I could add an autocomplete that displays a little table (3

Re: [Wicket-user] Please anyone, a hint?

2007-07-13 Thread Francisco Diaz Trepat - gmail
/13/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hi all, I wanted to see if I could add an autocomplete that displays a little table (3 columns). It is a simple locations table that shows a ZIPCODE a Provine/City and a Canton/Kanton (CH) field. I already have it working

Re: [Wicket-user] SPAM ON THE LIST

2007-07-13 Thread Francisco Diaz Trepat - gmail
Great. On 7/13/07, Eelco Hillenius [EMAIL PROTECTED] wrote: ps: how's the book comming along? Still working on it. Manning is preparing WIA for MEAP. More in a couple of weeks. Eelco - This SF.net email is sponsored by

Re: [Wicket-user] Please anyone, a hint?

2007-07-13 Thread Francisco Diaz Trepat - gmail
Ok I'll do that. Don't know much about maven yeat. I'll work on that also. f(t) On 7/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/13/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Here is the quick start. Well is actually a netbeans project without the war and build

Re: [Wicket-user] Please anyone, a hint?

2007-07-13 Thread Francisco Diaz Trepat - gmail
[j] = ''; } } if(selected==i){ classNames.push('selected'); } node.className = classNames.join( ); } } On 7/13/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Ok I'll do that. Don't know much about

Re: [Wicket-user] Please anyone, a hint?

2007-07-13 Thread Francisco Diaz Trepat - gmail
Here is the picture that prooves this. As you cas see by the red circule. Because in the table there is a TBODY element that is what it gets selected. On 7/13/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Dear Igor, I am sorry but I couldn't get on the quick start yet. I am

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

[Wicket-user] Download / View Attacment (like gmail)

2007-07-18 Thread Francisco Diaz Trepat - gmail
Hi guys is there an easy way to have, say two buttons or links, one downloads a txt file and the other one opens it up on a new window? mus be ajax. f(t) - This SF.net email is sponsored by DB2 Express Download DB2 Express C

[Wicket-user] Download / View Attacment (like gmail)

2007-07-19 Thread Francisco Diaz Trepat - gmail
Hello. Any way of doing this? -- Forwarded message -- From: Francisco Diaz Trepat - gmail [EMAIL PROTECTED] Date: Jul 18, 2007 4:15 PM Subject: Download / View Attacment (like gmail) To: wicket-user@lists.sourceforge.net Hi guys is there an easy way to have, say two buttons

Re: [Wicket-user] Download / View Attacment (like gmail)

2007-07-19 Thread Francisco Diaz Trepat - gmail
great thanks ps: i have a first version of the extensible choice auto-complete. should i send you the code? On 7/19/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/19/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hello. Any way of doing this? see downloadlink

[Wicket-user] localhost/wicketApp works fine, PC_NAME/wicketApp throws page expire.

2007-07-20 Thread Francisco Diaz Trepat - gmail
Hi has anyone has had this problem before? I have a page and everything works fine. but when I click on a link at the home page only works (goes to the page) if I am at localhost:// etc. even on my own computer. f(t) - This

Re: [Wicket-user] localhost/wicketApp works fine, PC_NAME/wicketApp throws page expire.

2007-07-20 Thread Francisco Diaz Trepat - gmail
Tomcat, ie7, safari, and firefox. and wicket 1.3 beta 2. On 7/20/07, Sean Sullivan [EMAIL PROTECTED] wrote: Which web browser? Which version of wicket? Which app server? On 7/20/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Hi has anyone has had this problem before

Re: [Wicket-user] localhost/wicketApp works fine, PC_NAME/wicketApp throws page expire.

2007-07-24 Thread Francisco Diaz Trepat - gmail
I see the questions didn't have anything to do with it. just protocol bs... anyways. f(t) On 7/20/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Tomcat, ie7, safari, and firefox. and wicket 1.3 beta 2. On 7/20/07, Sean Sullivan [EMAIL PROTECTED] wrote: Which web browser

Re: [Wicket-user] localhost/wicketApp works fine, PC_NAME/wicketApp throws page expire.

2007-07-25 Thread Francisco Diaz Trepat - gmail
... anyways. f(t) On 7/20/07, Francisco Diaz Trepat - gmail [EMAIL PROTECTED] wrote: Tomcat, ie7, safari, and firefox. and wicket 1.3 beta 2. On 7/20/07, Sean Sullivan [EMAIL PROTECTED] wrote: Which web browser? Which version of wicket? Which app server? On 7/20/07