Forums tools ready-to-use?

2010-07-25 Thread Paolo
message in a webpage. thank you. Paolo

Re: Forums tools ready-to-use?

2010-07-26 Thread Paolo
wrote: > >> Please check www.xaloon.org. This project contains some nice ready to use >> components for wicket including: >> >> >>- blog; >>- comments panel; >>- sports component; >>- plugin administration console; >> - registration

What is the best slideshow?

2010-09-11 Thread Paolo
I found this: http://lazydev.ildella.net/wicket-slides-080-released-with-smoothgallery Is it the best solution to show a sequence of image? I don't like to use flash. And this use javascript, so it may be OK. thank you. - To u

Re: jWicket 0.6.5

2010-11-14 Thread Paolo
Alle sabato 13 novembre 2010, Stefan Lindner ha scritto: > jWicket 0.6.5 is now available: > - upgraded to jQuery 1.4.4 > - DatePicker now provides control for select/style/tooltip every single > day What is the web site? thanks. --

ERROR: exceded the 65,535 byte limit Please Help me!

2010-11-14 Thread Paolo
I use Eclipse Europe and Wicket 1.4.10 I am newbie. I am try to make a ecommerce web site. I follow the example Cheese Shop in "Wicket in Action" manual. I put the products database in memory in a ArrayList in MainApplication. I works all ok, until the database was small. Now it include about 1000

Re: ERROR: exceded the 65,535 byte limit Please Help me!

2010-11-14 Thread Paolo
Alle domenica 14 novembre 2010, Jonathan Locke ha scritto: > > Yes. Learning Java better would certainly help, but to me there's an even > deeper problem because what we're looking at is result-oriented coding... > and result-oriented coding is what gets you into this sort of mess. The way > out o

how to set cookie domain?

2011-02-01 Thread Paolo
Hi, I want add a cookie, and I saw on this site, how to do this. https://cwiki.apache.org/WICKET/dealing-with-cookies.html ((WebResponse)RequestCycle.get().getResponse()).addCookie(new Cookie("cookieName", "cookieValue")); but I need to specify also the domanin. I need something like this PHP

How to set cookie domain?

2011-02-01 Thread Paolo
Hi, I want add a cookie, and I saw on this site, how to do this. https://cwiki.apache.org/WICKET/dealing-with-cookies.html ((WebResponse)RequestCycle.get().getResponse()).addCookie(new Cookie("cookieName", "cookieValue")); but I need to specify also the domanin. I need something like this PHP

How to read cookie from different domain?

2011-02-16 Thread Paolo
Hi, I need to read a cookie from a different domain (it is not mine). I known the name ok cookie. When I create (write) a cookie, it is possible to set the name of domain: cookie.setDomain(".example.com"); But It does'nt work for foreign domain just because security reasons, infact I can not mod

Re: How to read cookie from different domain?

2011-02-16 Thread Paolo
Alle mercoledì 16 febbraio 2011, Randy S. ha scritto: > It is not possible to read a cookie from a different domain. That would be a > terrible security problem. > > The browser will not send cookies that do not match your domain so no amount > of code tricks on the server handling this request wi

How to do document.write("Hello Word"); in Wicket?

2011-02-20 Thread Paolo
How can I write something into the HTML page, from Java code. A similar fast metod like in javascript to write in HTML: document.write("Hello word"); It is userfull for conditional messagge like: If (sum==5) { document.write("It is right!") } or it may be userfull for an simple email antispam s

How discover the caller page (referer)?

2011-02-20 Thread Paolo
How can I discover the caller page (referer) of my wicket application or specific page? http://en.wikipedia.org/wiki/HTTP_referrer Thank you. Paolo - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

How to know what RadioGroup was selected?

2011-04-06 Thread Paolo
I implemented this example in my application https://cwiki.apache.org/WICKET/using-radiogroups.html But, how I can know what radio button of radiogroup the user selected? This is a part of the html code: This is a part of the java code

Re: How to know what RadioGroup was selected?

2011-04-06 Thread Paolo
Alle giovedì 07 aprile 2011, James Carman ha scritto: > What is the value of "myInt"? That should tell you which one was selected. > > On Wed, Apr 6, 2011 at 10:15 PM, Paolo wrote: > > I implemented this example in my application > > > > https://cwiki.apa

Repetitive TextField Form into ListView?

2011-04-11 Thread Paolo
Hi, It is my first experience with Wicket. I try to do a e-commerce site, based on cheese shop from Wicket in Action Book. I have problem to implement shopping cart to set the quantity of each item that the user choose. As you can see in this screenshot, I put a TextField for quantity in a ListVie

What is the Best login implementation?

2011-06-18 Thread Paolo
Hi, I found on google some solution for login with wicket: http://wicket.apache.org/learn/projects/authroles.html Wicket Shiro - integration between Apache Shiro and Wicket (I can't find the web site) Wicket Security - JAAS inspired, principal based security framework (I can't find the web site

How to get client ip with wicket 1.5

2011-11-20 Thread Paolo
I need to known the ip address of the user connected to my tomcat server. In previous post, I read about... getWebRequestCycle().getWebRequest().getHttpServletRequest().getRemoteAddr(); But I also find some documentation with google that in Wicket 1.5 I should use WebClientInfo: getRemoteAddr p

Re: How to get client ip with wicket 1.5

2011-11-20 Thread Paolo
k you so much. > On Sun, Nov 20, 2011 at 4:41 PM, Paolo wrote: > > I need to known the ip address of the user connected to my tomcat server. > > In previous post, I read about... > > > > getWebRequestCycle().getWebRequest().getHttpServletRequest().getRemoteAddr(); > &

Re: How to get client ip with wicket 1.5

2011-11-21 Thread Paolo
Alle lunedì 21 novembre 2011, François Meillet ha scritto: > ((ServletWebRequest) > RequestCycle.get().getRequest()).getContainerRequest().getRemoteHost() > > François > getHeader("X-Forwarded-For") return null string!! I use getRemoteHost() and it works! Thanks to all!! P.S. I test it only on

Re: Google bot see my site with errors!!

2012-01-31 Thread Paolo
Alle martedì 31 gennaio 2012, Josh Kamau ha scritto: > Does your homepage constructor have any arguments? this is the first part of HomePage.java, with some omissis package org.wicket.example; import .. public class HomePage extends WebPage // implements java.io.Serializable { priva

Re: Google bot see my site with errors!!

2012-01-31 Thread Paolo
Alle martedì 31 gennaio 2012, Martin Grigorov ha scritto: > What exactly is the code at: org.wicket.example.QuoteResult. > (QuoteResult.java: 55) ? package org.wicket.example; import java.util.Locale; import javax.servlet.http.HttpServletRequest; import org.apache.wicket.markup.html.WebMarkupC

Re: Google bot see my site with errors!!

2012-02-02 Thread Paolo
Alle mercoledì 01 febbraio 2012, Martin Grigorov ha scritto: > I guess lingue is null here, i.e. there is no "Accept-Language" header. > >> NPEs are easy to debug ;-) Thank you very much, I solved it by putting a if (lingua==null) { lingua = "0"; } before the line with NPE: if (lingua.indexOf("en

Wicket authentication: how to store user?

2012-03-02 Thread Paolo
I use this code as base: http://wicketstuff.org/wicket14/authentication/ I added registration and user/password sign-in and checking with database, instead of simple "wicket" as user and password. All works ok, but now I need in AdminPage to known which user is logged in. How can I implement it

Re: Wicket authentication: how to store user?

2012-03-03 Thread Paolo
Alle sabato 03 marzo 2012, Martin Grigorov ha scritto: > Hi, > > Save the logged in user id in the Session. > > MySession.java: > > private long userId; > > public User getUser() { > return userService.getUserById(userId); > } > > > AnyPage.java: > user = MySession.get().getUser(); > Thank

Re: WICKET JAVASCRIPT

2012-03-07 Thread Paolo
Alle mercoledì 07 marzo 2012, mukesh kumar ha scritto: > Thanks for it. But i am still confused. So, can you write some line of code > for alert message of JS file. > > Thanks ! You could use visural http://wicket.visural.net/examples/dialog If you learn to use it, you will use also other tools

Re: Wicket authentication: how to store user?

2012-03-07 Thread Paolo
Alle lunedì 05 marzo 2012, Dan Retzlaff ha scritto: > Paolo, sessions are accessed with a JSESSIONID cookie or query parameter > supplied with each request. It's not possible for one user to guess another > user's session ID, so the approach Martin describes is inherently secure

I don't want url page count parameter: localhost:8080/context/?0

2012-03-17 Thread Paolo
Hi, I read this old post to solve the my same problem: --- I'm using Wicket 1.5.3, an application with a number of tabbed panels. My application's url is, lets say http://localhost:9080/context/ When I enter this URL, the browse immediately changes this to http://loca

Re: What real life scenario calls for page ID?

2012-03-18 Thread Paolo
Alle lunedì 19 marzo 2012, Chris Colman ha scritto: > I've been thinking about the new 1.5 page ID/versioning feature (which > we disabled as soon as we discovered it) and wondering if there is > actually a real world scenario for stateful pages that actually requires > this functionality. > > I u

Homepage runs 2 times if I mount it as /

2012-03-23 Thread Paolo
I made bookmarkable the HomePage: But it is executed two times!!! Infact it make me crazy! I put an System.out.printf to check it in the console log. Because the page in the browser look like to load only one time, but in the console I can read 2 times printf line! If I mount it as something diff

Re: Homepage runs 2 times if I mount it as /

2012-03-25 Thread Paolo
Alle venerdì 23 marzo 2012, Jeff Schneller ha scritto: > I may be wrong but you don't need to mount the homepage which is why it is > being executed twice. Yes, ok, you are right. But the problem was start because I use the "NoVersionMount" to mount homepage because I don't like that the url of

BookmarkablePageLink with Label is supported by Wicket?

2012-03-25 Thread Paolo
I read on this web site: http://ondra.zizka.cz/stranky/programovani/java/web/wicket/wicket-link-with-label.texy - Wicket does not have exactly a „link with label“ component out of the box. Remember Wicket tries to hide the HTTP from you (and is quite good at it). It has a Link, wh

Re: What real life scenario calls for page ID?

2012-03-26 Thread Paolo
Alle giovedì 22 marzo 2012, Pointbreak ha scritto: > On Thu, Mar 22, 2012, at 11:42, Igor Vaynberg wrote: > > > > > > No that is not what happens with NoVersionMount: > > > > > > > i didnt say it was an ajax twistie > > Not being an ajax twistie link still doesn't add the ?1 to the url. > N

Could not find child with id: cart:prezzo in the wicket:enclosure

2012-03-26 Thread Paolo
I am become crazy with wicket:enclosure to prevent an runtime error in case the ListView is empty. this is part of my html code: Link prezzo   -- I use Wicket 6 beta. If you

Re: What real life scenario calls for page ID?

2012-03-27 Thread Paolo
Alle martedì 27 marzo 2012, Martin Grigorov ha scritto: > On Tue, Mar 27, 2012 at 12:51 AM, Paolo wrote: > > Alle giovedì 22 marzo 2012, Pointbreak ha scritto: > >> On Thu, Mar 22, 2012, at 11:42, Igor Vaynberg wrote: > > > >> > > > >> >

Re: Wicket and Menu support

2012-04-08 Thread Paolo
Alle domenica 08 aprile 2012, Daniel Neugebauer ha scritto: > Depending on how your menus are supposed to be defined, you could > statically put them into your markup or dynamically create them by using > a ListView or similar. > > If you want to avoid HTML/CSS as far as possible, other framework

I would url clear, without jsessionid and ?1

2012-10-25 Thread Paolo
Hi, I know that it is an old discussion, but I really want the url simply and clear, without ;jsessionid= and without ?1 ?2 etc. I am starting to upgrade to wichet 6.2.0 actually I use this in MainApplication: protected void init() { super.init(); SecurePackageResourceGua

Re: I would url clear, without jsessionid and ?1

2012-10-25 Thread Paolo
Alle giovedì 25 ottobre 2012, Martin Grigorov ha scritto: > On Thu, Oct 25, 2012 at 4:57 PM, Paolo wrote: > > Hi, > > I know that it is an old discussion, > > but I really want the url simply and clear, without ;jsessionid= and > > without ?1 ?2 etc. > >

How to know the country of the user

2012-10-27 Thread Paolo
How can I know the country of the user that is connected to my wicket page? I only suppose to check the IP address with: String ipAddress = ((ServletWebRequest) RequestCycle.get().getRequest()).getContainerRequest().getRemoteHost(); And than with command line whois check the country whois 109.

Re: How to know the country of the user

2012-10-28 Thread Paolo
Alle domenica 28 ottobre 2012, Andrea Del Bene ha scritto: > You should try Session.get().getLocale(). By default Session returns the > locale of the underlying HttpServletRequest. getLocale return the languange set in the browser, and it is not the same thing of country. You are right for exam

Re: How to know the country of the user

2012-10-28 Thread Paolo
Alle domenica 28 ottobre 2012, Wujek Srujek ha scritto: > Locale has more information than just the language. For example: en_US > is English in USA; en_UK is English in the UK, it_IT is Italian in Italy, > but it_CH is Italian in Switzerland. Your example would differentiate > between pt_PT (Portu

AjaxTabPanel stateless is possible?

2012-11-26 Thread Paolo
I would the url of my site without pageId ?2 or ?3 etc. I know that to do this I need to make the page stateless, so I did it for all my pages. But one page have 2 tabs, using AjaxTabbedPanel. I tried to use simple TabbedPanel, but it is not usefull, because so I have that all the page is reloade

Variable changes on server running, don't change on localhost

2013-01-10 Thread Paolo
Hi, I am become crazy! My wicket web application works fine on my laptop on localhost, but don't work well on my home server. I made all the web site stateless. I don't need user login. But one page is stasefull because I use wicket Ajax Tab Panel. On this page I have youtube video, with some p

Re: Variable changes on server running, don't change on localhost

2013-01-10 Thread Paolo
Alle giovedì 10 gennaio 2013, francois meillet ha scritto: > Why do you make properties static, why TabPanel1 is static ? > > François Just cut and past from some examples or previews app. I removed static and now it works ok! Thank you so much! Long life to you! --

Cometd Servlet mapping for wickestuff-push example

2009-04-19 Thread Paolo Marrone
er? If yes, which is the right web.xml file to use? Please help me. Thank you Paolo Marrone - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Wicket 1.3.x DatePicket drop-in replacement

2008-02-22 Thread Paolo Di Tommaso
e references to 1.2.x wicket classes (wicket.xxx.Xxx classes) so I'm unable to use together the wicket 1.3 core classes. Is there a distribution of the previous DatePicker that works with Wicket 1.3 ? Thank you, Paolo

Re: Wicket 1.3.x DatePicket drop-in replacement

2008-02-23 Thread Paolo Di Tommaso
jar it would require also to deploy also the wicket 1.2.x core classes .. this seems a bit strange. Am I missing something ? Thanks, - Paolo On Fri, Feb 22, 2008 at 6:11 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > there is wicket-datetime that has a yui datepicker > > there

Wicket 1.3.x PageParameters

2008-02-25 Thread Paolo Di Tommaso
round to have to change all my PageParameters composition? Thank you, / Paolo

Cross fields validation

2008-02-29 Thread Paolo Di Tommaso
DateValidator Field-B validation depends on the date value entered in Field-A and is mandatory only for certain date value entered in Field-A. So basically how write a validator that depends on values entered in other fields? Thank you. / Paolo

Re: Cross fields validation

2008-02-29 Thread Paolo Di Tommaso
Thanks! On Fri, Feb 29, 2008 at 10:55 AM, Kai Mütz <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] <> wrote: > > Guys, > > > > Which the best pattern using wicket to write validation rule that > > span over > > more than one field?! > > http://cwiki.apache.org/WICKET/validating-related-fields.html

Bookmarkable page absolute url

2008-03-04 Thread Paolo Di Tommaso
ating to 1.3.x it returns the RELATIVE path to the current context. Ok, this is good to a lot of reasons (proxy problems, and so on .. ). But how to get the absolute path for a bookmarkable page? Thank you, / Paolo

Re: Bookmarkable page absolute url

2008-03-04 Thread Paolo Di Tommaso
hanks. / Paolo On Tue, Mar 4, 2008 at 12:47 PM, Daniel Frisk <[EMAIL PROTECTED]> wrote: > I use RequestUtils to convert the path to an absolute path, seems to > work like a charm :-) > > import org.apache.wicket.protocol.http.RequestUtils; > > RequestUtils.toAbsolutePa

Re: wicket-datetime

2008-03-06 Thread Paolo Di Tommaso
If you don't have licence matter you can download the old 1.2.x datepicker available here http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-datepicker and refactor to make it use the Wicket 1.3.x core classes. That's all . / Paolo On Thu, Mar 6, 2008 at 11:23 A

Seam Wicket integration and conversation scope

2008-03-22 Thread Paolo Di Tommaso
axBehavior also? Thank you, // Paolo

Re: Seam Wicket integration and conversation scope

2008-03-23 Thread Paolo Di Tommaso
use causes (and integrating other frameworks like jbpm that need to share the same hibernate session) it will drive in a hell. Thank you. // Paolo On Sun, Mar 23, 2008 at 2:25 AM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > conversation scope is slightly different, for long running

"How page handle a request" wiki page

2008-04-12 Thread Paolo Di Tommaso
that have been deprecated. Haven't they? Thank Paolo

Re: onBeforeRender vs. prepareForRender

2008-04-12 Thread Paolo Di Tommaso
Here it is a good reference http://cwiki.apache.org/WICKET/user-code-context.html // Paolo On Sat, Apr 12, 2008 at 7:29 PM, Stefan Simik <[EMAIL PROTECTED]> wrote: > > One additional question, > > is it valid to change to component hierarchy in these methods ? > >

Check validator existence

2008-04-14 Thread Paolo Di Tommaso
Guys, is there an API in wicket to know if a Validator instance has been added to a form? Something like Form#contains( IValidator ) or any workaround to know it? Thanks, // Paolo

Re: Check validator existence

2008-04-14 Thread Paolo Di Tommaso
); } } Thanks // Paolo On Mon, Apr 14, 2008 at 5:42 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > no, i dont think we do. what is your usecase? > > -igor > > > On Mon, Apr 14, 2008 at 2:45 AM, Paolo Di Tommaso > <[EMAIL PROTECTED]> wrote: > > Guys, > >

Re: Check validator existence

2008-04-14 Thread Paolo Di Tommaso
I've done so .. thanks. // Paolo On Mon, Apr 14, 2008 at 9:17 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > just have a boolean that marks the fact that you have added the > validator to the form... > > -igor > > >

JmxPanel

2008-04-17 Thread Paolo Di Tommaso
Guys, someone has soem experience with the nice JmxPanel describe here? http://chillenious.wordpress.com/2007/08/29/jmx-wicket-panel/ Adding a JmxPanel instance to my page I always get the following EMPTY panel .. Any ideas ? Thanks. // Paolo

Re: JmxPanel

2008-04-18 Thread Paolo Di Tommaso
Thanks, I will try it. Anyway strange that there's this still this issue .. // Paolo On Thu, Apr 17, 2008 at 2:20 PM, gumnaam23 <[EMAIL PROTECTED]> wrote: > > Download the jmx panel source code and add an empty DIV element before the > the JmxPanel.html > > here&

Re: AW: Wicket + CMS

2008-04-18 Thread Paolo Di Tommaso
think would be relatively easy to add Wicket support to it. // Paolo On Fri, Apr 18, 2008 at 9:28 PM, Frank van Lankvelt < [EMAIL PROTECTED]> wrote: > Hi Uwe, > > > > > > > > > > The repository is a JCR (JackRabbit) repository extended with workflow > >

Re: integrating extjs with wicket

2008-04-22 Thread Paolo Di Tommaso
Dear AT ... unfortunately I didn't had time to work out on this integration. I will let you know in future. // Paolo On Mon, Apr 21, 2008 at 4:58 PM, Advanced Technology(R) <[EMAIL PROTECTED]> wrote: > Hi Paulo, > Did you have sucess integrating Ext.form.FormPanel ???

Re: JmxPanel

2008-04-23 Thread Paolo Di Tommaso
I tried this trick but the JmxPanel still does not work .. Have someone used successfully the JmxPanel ?! Thank you // Paolo On Thu, Apr 17, 2008 at 2:20 PM, gumnaam23 <[EMAIL PROTECTED]> wrote: > > Download the jmx panel source code and add an empty DIV element befo

Re: JmxPanel

2008-04-23 Thread Paolo Di Tommaso
Absolutely, JMX feature is enabled. I'm adding a JmxPanel in my page using a simple: add(new JmxPanel("jmx")); but nothing is displayed .. You have it working? Have you used any trick? // Paolo On Wed, Apr 23, 2008 at 3:46 PM, Gerolf Seitz <[EMAIL PROTECTED]> wrote

Re: JmxPanel

2008-04-23 Thread Paolo Di Tommaso
No. Just a plain html page without any custom css. What version of Wicket/Wicket-stuff-jmx-panel are you using ? Thanks, // Paolo On Wed, Apr 23, 2008 at 7:20 PM, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > nope, did the same thing you did. > do you have any custom css that migh

WebRequestCycle and Open-session-in-view pattern

2008-04-28 Thread Paolo Di Tommaso
, etc) served through the wicket application? Basically I'm looking for a method to identify requests for static resources that does not requires n open hibernate session. Thank you, // Paolo

Re: JmxPanel

2008-04-30 Thread Paolo Di Tommaso
YESS! You are right, now it works. Thank you, Paolo On Wed, Apr 30, 2008 at 11:15 AM, Benjamin Ernst <[EMAIL PROTECTED]> wrote: > Hi Paolo, > > I had just the same problem as you. > > The "display:none" has nothing to do with this. It just hides the root of

Re: JmxPanel

2008-04-30 Thread Paolo Di Tommaso
Cool, good to know. Thanks, Paolo On Wed, Apr 30, 2008 at 11:59 AM, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > heh, didn't think of that ;) > the correct way would be to override the methode getDomainFilter > and return IDomainFilter.ALL (or something like that) > >

Re: dzone refcard

2009-07-06 Thread Paolo Di Tommaso
It would be nice -- paolo On Mon, Jul 6, 2009 at 6:07 PM, Luther Baker wrote: > Is anyone aware of a wicket > refcard<http://refcardz.dzone.com/refcardz/core-java-concurrency > >initiative? > Thoughts? > > -Luther >

Re: ExtJS

2009-07-24 Thread Paolo Di Tommaso
t-ext does cover all the huge ExtJS components library. Grid are supported as GroupingGrid as well, but unfortunately not the editable grids. Regards, Paolo On Fri, Jul 24, 2009 at 1:36 AM, John Armstrong wrote: > Hi all, > Does anyone have access to the javadocs for the ext-js > imp

Re: Ajax indicator turning off

2009-07-26 Thread Paolo Di Tommaso
Yep, intercept the ajax call and inc/dec a counter -- paolo On Sat, Jul 25, 2009 at 10:03 AM, John Patterson wrote: > Hi, I notice that when I have two ajax requests overlapping the indicator > is turned off when the first one completes. > > Start AJAX request A - turns on t

Re: Wicket in Italy

2009-09-24 Thread Paolo Di Tommaso
Roma (~) On Thu, Sep 24, 2009 at 8:46 AM, francesco dicarlo wrote: > Hi, i've just worked on a project with wicket for a software house in Bari. > > But now i'm in Rome. > > Hope to see you in an event XD > > 2009/9/24 Luca Provenzani > >

Re: Wicket in Php

2009-05-20 Thread Paolo Di Tommaso
In other words .. impossible -- paolo On Wed, May 20, 2009 at 6:24 PM, Jeremy Thomerson wrote: > That's for you to decide. Typically it involves some kind of jump > page between the two applications that once you are signed in, it > sends the user to a page in the other

Re: Wicket-like JavaScript Components

2009-06-16 Thread Paolo Di Tommaso
Extjs is a good choice, we have integrated it successfully with Wicket. Check it out at http://code.google.com/p/wicket-ext/ Paolo On Mon, Jun 15, 2009 at 6:31 PM, Dane Laverty wrote: > I'm working on a small project where I'm limited to using only JavaScript. > I &

Re: Wicket-like JavaScript Components

2009-06-17 Thread Paolo Di Tommaso
Say your boss to engage more java developers ;) -- p On Tue, Jun 16, 2009 at 9:23 PM, Dane Laverty wrote: > I'm currently the only Java programmer on staff, and I'm already > maintaining > two Wicket applications, so my boss is concerned that if I start a third > project in Java that no one els

Re: using wicket to create dynamic chart

2008-05-15 Thread Paolo Di Tommaso
Pure JavaScript .. simple stunning! http://people.iola.dk/olau/flot/examples/graph-types.html // Paolo On Thu, May 15, 2008 at 9:11 PM, Ryan Gravener <[EMAIL PROTECTED]> wrote: > These look pretty nice for free: > > http://teethgrinder.co.uk/open-flash-chart/ > > On Thu,

Re: [ANNOUNCE] Apache Wicket 1.3.4 is released!

2008-06-28 Thread Paolo Di Tommaso
Really a good news. Congratulations! -- Paolo On Fri, Jun 27, 2008 at 12:35 AM, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > The Apache Wicket team is proud to announce the availability of the fourth > maintenance release: Apache Wicket 1.3.4. A lot of bugs have been squashed >

Re: Issue with the FileUploadField

2008-07-16 Thread Paolo Di Tommaso
()); } I'm attaching my code so you can check details. Have fun -- Paolo On Wed, Jul 9, 2008 at 4:35 PM, Arun Wagle <[EMAIL PROTECTED]> wrote: > Hello All, > > I have an issue with the file upload > I have a Fileupload input filed on a tabbed panel. The first time when I >

Re: [ANN] Brix 1.0 beta1

2008-07-23 Thread Paolo Di Tommaso
Really interesting and . . cool! Thanks, Paolo On Wed, Jul 23, 2008 at 5:51 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > we have released Brix 1.0 beta1 [1] yesterday. for those of you who do > not know what Brix is, it is an embeddable CMS for wicket apps based > on wicket

Wicket integration in Seam 2.1

2008-08-05 Thread Paolo Di Tommaso
ement tasks and your business process management processes themselves. So basically, all the orchestration stuff that you need to do with writing the view side of your app. [..] " http://java.dzone.com/articles/whats-new-seam-21-an-interview Enjoy. -- Paolo

Apache FOP and Wicket

2008-09-11 Thread Paolo Di Tommaso
Dear all, If I'm not wrong Wicket is able to manage any king of markup not just HTML. So it would be possibile to use Wicket to generate an Apache FOP markup to rendere a PDF file? Any suggestions? Thank you, -- Paolo

Re: Apache FOP and Wicket

2008-09-11 Thread Paolo Di Tommaso
Why not? I was remembering that Wicket can manage any markup, not just HTML . . Am I missing something ? Paolo On Thu, Sep 11, 2008 at 3:03 PM, Edvin Syse <[EMAIL PROTECTED]> wrote: > I don't think Wicket is the right tool for that, try Freemarker instead. > You can still

Re: Invitation to Cocoon GetTogether 2007

2007-09-10 Thread Paolo Di Tommaso
I'm not a Wicket core developer guru, but I'm leading a big Wicket based project in Rome. I would pleased to attend Cocoon conference and bring my Wicket experience. Paolo Di Tommaso On 9/9/07, Grzegorz Kossakowski <[EMAIL PROTECTED]> wrote: > > Hello Wicket devs and u

Re: AutoCompleteTextField PostCallHandler Issue

2007-10-16 Thread Paolo Di Tommaso
I'be opened an issue about this months ago https://issues.apache.org/jira/browse/WICKET-310 But it is still there .. Paolo On 10/16/07, Don Hass <[EMAIL PROTECTED]> wrote: > > > There seems to be an issue with the AutoCompleteTextField not calling > registered postCall

Re: Weird Ajax non-English characters encoding problem.

2007-10-22 Thread Paolo Di Tommaso
return false; } Now, how is defined the content encoding of an ajax request? I was expecting something like charset= in the ajax request request header. Otherwise how the IRequestCycleSettings#setResponseRequestEncoding() will affect the charset definition in the ajax call? Tha

Wicket-jmx download (?)

2007-10-27 Thread Paolo Di Tommaso
Folks, I'm looking for Wicket (1.2.x) JMX download but I'm unable to find in the download page: http://wicket.sourceforge.net/wicket-1.2/Download.html Is there another location? How to get it? Thanks, Paolo

Re: Wicket-jmx download (?)

2007-10-27 Thread Paolo Di Tommaso
Great .. thank you people! On 10/27/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > > http://sourceforge.net/project/showfiles.php?group_id=119783&package_id=138753&release_id=503024 > > On 10/27/07, Paolo Di Tommaso <[EMAIL PROTECTED]> wrote: > > Fol

Re: Mystery problem w/ Wicket + Glassfish v2?

2007-11-08 Thread Paolo Di Tommaso
Has Wicket 1.2.7 been released? I'm unable to find on 1.2.x download page .. Thanks, Paolo On Nov 5, 2007 10:17 PM, Johan Compagner <[EMAIL PROTECTED]> wrote: > please upgrade to at least the latest version of 1.2 (1.2.7) because if i > look at getContentType of

WicketTester failure (1.2.6)

2007-12-05 Thread Paolo Di Tommaso
ner.java:386) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main( RemoteTestRunner.java:196 Thank, Paolo

Re: WicketTester failure (1.2.6)

2007-12-06 Thread Paolo Di Tommaso
Solved using WicketTester#setStartPage( ITestPageSource ) instead of WicketTester#setStartPage( Page ) Bye, Paolo On Dec 5, 2007 4:18 PM, Paolo Di Tommaso <[EMAIL PROTECTED]> wrote: > Guys, > > I'm getting a WicketRuntimeExceptionin this simple unit test: > > class

Re: Ways of making components in a page optional?

2008-01-02 Thread Paolo Di Tommaso
An easy trick to avoid this is to use a Panel/Fragment instantiating just a WebMarkupContainer when you don't want to display/create the full component. That's all Paolo On Jan 2, 2008 7:06 PM, Timo Rantalaiho <[EMAIL PROTECTED]> wrote: > On Tue, 18 Dec 2007, wfaler wrot

Re: Ways of making components in a page optional?

2008-01-03 Thread Paolo Di Tommaso
Yes, I use this approach in conjunction to an ajax action to refresh/create UI components in response to user interaction. Paolo On Jan 3, 2008 7:43 AM, Timo Rantalaiho <[EMAIL PROTECTED]> wrote: > On Wed, 02 Jan 2008, Paolo Di Tommaso wrote: > > An easy trick to avoid this is

Re: [Wicket 1.2.6] How to get Wizard's form from inside a WizardStep?

2008-01-05 Thread Paolo Di Tommaso
Let me guess .. you need the form to create a AjaxSubmitLink instance. But the #findParent(Form.class) will return null until the component hierarchy is constructed, being so you cannot invoke it at component construction-time. A possible workaround is to postpone the findParent(Form.class) metho

Re: [Wicket 1.2.6] How to get Wizard's form from inside a WizardStep?

2008-01-07 Thread Paolo Di Tommaso
I would propose the following patch to AjaxFormSubmitBehavior. Basically adding a form-less constructor so that when the form obejct is not specified it will discovered using the findParent(Form.class) method. Core developers what do you think about it ? Paolo abstract public class

Re: [Wicket 1.2.6] How to get Wizard's form from inside a WizardStep?

2008-01-07 Thread Paolo Di Tommaso
Emh .. not really because that source IS the patch ;) On Jan 8, 2008 4:52 AM, Timo Rantalaiho <[EMAIL PROTECTED]> wrote: > On Mon, 07 Jan 2008, Paolo Di Tommaso wrote: > > I would propose the following patch to AjaxFormSubmitBehavior. > > > > Basically adding a fo

Re: integrating extjs with wicket

2008-01-09 Thread Paolo Di Tommaso
found not trivial is to pass/define the Extjs widget property/configuration in a easy/elegant way. Would be interesting discuss this... -- Paolo On Jan 9, 2008 6:25 PM, Jeremy Fergason <[EMAIL PROTECTED]> wrote: > wicket seems to provide some nice management classes like TextFi

Re: the flow of wicket

2008-01-12 Thread Paolo Di Tommaso
it should important to know I don't think is a good approach because it is precisely this that leads to wrong assumptions, that could break in future. Thank you, - Paolo On Jan 11, 2008 2:09 AM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > you guys want to know about internal implem

Best to strategy to have a Wicket page returns a binary content by default

2008-09-23 Thread Paolo Di Tommaso
ault render strategy to return a content different from HTML ? Thank you, -- Paolo

Re: Best to strategy to have a Wicket page returns a binary content by default

2008-09-23 Thread Paolo Di Tommaso
Interesting .. so I could extend QueryStringUrlCodingStrategy overriding the decode() method to return my PdfRequestTarget. Cool! Thank you, -- Paolo On Tue, Sep 23, 2008 at 3:04 PM, Matej Knopp <[EMAIL PROTECTED]> wrote: > You don't have to do this from the pages. You can c

  1   2   >