Wicket at FOSDEM 2011

2011-01-19 Thread Martijn Dashorst
All, I'll be giving a talk about Wicket (and Wicket 1.5) at FOSDEM next february (http://fosdem.org). The conference is free to attend. Anyone attending the conference? Martijn -- Become a Wicket expert, learn from the best: http://wicketinaction.com

Re: Free wicket from component hierarchy hell

2011-01-19 Thread Martin Makundi
Can we bargain about this? Say, also wicket auto ajax enclosure and both into 1.4-x? ** Martin 2011/1/18 Jeremy Thomerson jer...@wickettraining.com: I agree.  I'm -0 in general, and definitely -1 for 1.4 and -0.9 for 1.5. On Tue, Jan 18, 2011 at 3:54 AM, Martijn Dashorst

Different browsers behavior iframe

2011-01-19 Thread Mehmet.Kaplankiran
Hi, HTML: iframe wicket:id=myFile border=1 width=900px height=400px/iframe I have the following behavior in Internet Explorer (v. 6.0) and Firefox . Firefox: PDF and JPG is embedded. zip, doc, .. is not embedded but opened with appropriate program. Internet Explorer: PDF, JPG, doc to be

Re: Different browsers behavior iframe

2011-01-19 Thread Martijn Dashorst
Probably better asked here: http://social.answers.microsoft.com/Forums/en-US/InternetExplorer/threads On Wed, Jan 19, 2011 at 2:28 PM, mehmet.kaplanki...@t-systems.com wrote: Hi, HTML: iframe wicket:id=myFile border=1 width=900px height=400px/iframe I have the following behavior in

AW: Different browsers behavior iframe

2011-01-19 Thread Mehmet.Kaplankiran
I can download a zip document from the Internet with InternetExplorer and can read it. But with my wicket application (see html-code with iframe tag), I can not read a zip document with InternetExplorer. -Ursprüngliche Nachricht- Von: Martijn Dashorst

Component failed to render..

2011-01-19 Thread nino martinez wael
Are there a easy way to pickup failed components and replace them with a specific panel, thus making the page to continue to render? Regards Nino

Re: SQL Query casting objects

2011-01-19 Thread ice123456
SQL is very good, if you want to export data from sql, you can use Free DataExport Component~~ 100% Free~ More here: http://www.e-iceblue.com/Introduce/free-dataexport-component.html http://www.e-iceblue.com/Introduce/free-dataexport-component.html -- View this message in context:

IValidator vs IFormValidator

2011-01-19 Thread Jan Ferko
Hi, I worked on validators for my app and I noticed that IFormValidator is not subinterface of IValidator, which made some problems in app as we are using both components which needs IValidators and IFormValidators as we need same validators in both types of components we have to implement

Re: IValidator vs IFormValidator

2011-01-19 Thread Martin Grigorov
Form has #add(IFormValidator) FormComponent has #add(IValidator) what exactly do you mix ? On Wed, Jan 19, 2011 at 3:42 PM, Jan Ferko julyl...@gmail.com wrote: Hi, I worked on validators for my app and I noticed that IFormValidator is not subinterface of IValidator, which made some problems

RE: JasperReport viewing options for wicket 1.5

2011-01-19 Thread John Owen
http://poi.apache.org/ -Original Message- From: Jim Pinkham [mailto:pinkh...@gmail.com] Sent: Tuesday, January 18, 2011 1:18 PM To: users@wicket.apache.org Subject: Re: JasperReport viewing options for wicket 1.5 Well, I seem to be making good progress, but still not 100% there. I got

RE: JasperReport viewing options for wicket 1.5

2011-01-19 Thread John Owen
At this point you're in the realm of JasperReports. Admittedly, their user forums suck in comparison to Wicket, but you may find your answer about the Excel issue there or on the POI user list (if it exists). -Original Message- From: Jim Pinkham [mailto:pinkh...@gmail.com] Sent:

Re: Different browsers behavior iframe

2011-01-19 Thread Altuğ Bilgin Altıntaş
Hi, Wicket code dees something special ? If yes then please paste it. 2011/1/19 mehmet.kaplanki...@t-systems.com I can download a zip document from the Internet with InternetExplorer and can read it. But with my wicket application (see html-code with iframe tag), I can not read a zip

AW: Different browsers behavior iframe

2011-01-19 Thread Mehmet.Kaplankiran
public abstract class EbaFilePanel extends Panel { private final SetString validMimeTypes = new HashSetString(); public EbaFilePanel(String id) { super(id); addValidMimeType(application/pdf); addValidMimeType(image/jpeg);

Dealing with json in wicket

2011-01-19 Thread Wicket
Hi, I read about how to make a JSON response thru wicket but how do you handle the request? / Mathias - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Dealing with json in wicket

2011-01-19 Thread Marc Nuri San Félix
Hi I use a combination of an IRequestTarget implementation and an extended UrlCodingStrategy. Regards. -- Marc Nuri This is what I use, maybe it helps public abstract class JSONRequestTarget implements IRequestTarget { private final

Dealing with JSON request

2011-01-19 Thread Mathias Nilsson
I've read about how to make a json response with ajax but how do you deal with request. Let´s say I would interchange data between server and client. // Request { login:{ credential : uniquekey, username : user, password : password } } // response { user : { name :

Re: Dealing with json in wicket

2011-01-19 Thread Marc Nuri (GMail)
Hi I use a combination of an IRequestTarget implementation and an extended UrlCodingStrategy. Regards. -- Marc Nuri This is what I use, maybe it helps public abstract class JSONRequestTarget implements IRequestTarget { private final

Re: Component failed to render..

2011-01-19 Thread Igor Vaynberg
not really -igor On Wed, Jan 19, 2011 at 6:36 AM, nino martinez wael nino.martinez.w...@gmail.com wrote: Are there a easy way to pickup failed components and replace them with a specific panel, thus making the page to continue to render? Regards Nino

Re: Wicket at FOSDEM 2011

2011-01-19 Thread nino martinez wael
Hmm can't see the speaker schedule. But its a bit too close for planning (in the mist of releasing our first wicket based product). What about 33degrees or geecon? On Jan 19, 2011 10:44 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: All, I'll be giving a talk about Wicket (and Wicket

Re: Dealing with JSON request

2011-01-19 Thread Martin Grigorov
pass it in POST body and then parse it with any Java JSON library (e.g. google's gson) On Wed, Jan 19, 2011 at 6:47 PM, Mathias Nilsson wicket.program...@gmail.com wrote: I've read about how to make a json response with ajax but how do you deal with request. Let´s say I would interchange

Resource.getResourceStream() called twice in 1.4.15

2011-01-19 Thread Brad Grier
Not too long ago I built a url-based api into our web app. I basically mounted a shared resource and then hooked into getResourceStream to process information from the url parameters and insert the result into our data store. Under 1.4.15 I'm getting duplicate records because getResourceStream is

PHP CMS as wicket markup files provider

2011-01-19 Thread Marek Smigielski
Hi, We are starting new web project. Very simple one, nothing extraordinary. I have strong java experience so I have chosen wicket as primary web framework. As we have small budget and fixed time constraints there is great need for rapid development. In design phase we are focus on searching for

Re: PHP CMS as wicket markup files provider

2011-01-19 Thread Igor Vaynberg
if you are looking for a low-level CMS then this will do what you want, and is built to integrate with wicket: https://github.com/brix-cms/brix-cms part from that you can make your pages implement IMarkupResourceStreamProvider and IMarkupCacheKeyProvider and retrieve the markup from anywhere.

Re: PHP CMS as wicket markup files provider

2011-01-19 Thread Marek Smigielski
I will install brix-cms and see how it looks like and how simple it is for editors. Implementing IMarkupResourceStreamProvider should be simple enough and this is exactly what I was looking for. Thanks for your tips. Marek On Wed, Jan 19, 2011 at 11:28 PM, Igor Vaynberg

export to excel AjaxFallbackDefaultDataTable

2011-01-19 Thread fachhoch
I found some code to export datatable to excel here is the code add(new LinkVoid(export){ @Override public void onClick() { getRequestCycle().setRequestTarget(new

Calling wicket modal popup from non-wicket

2011-01-19 Thread Nelson Segura
We are slowly migrating a JSP app to wicket. Parts of our app are written in Wicket, but most of it is still JSP. We need to integrate some of the new wicket functionality into old JSP pages, as fragments or modal popups. There is a lot of functionality in that page using JSP, so rewriting

Re: export to excel AjaxFallbackDefaultDataTable

2011-01-19 Thread Jeremy Thomerson
On Wed, Jan 19, 2011 at 5:07 PM, fachhoch fachh...@gmail.com wrote: I found some code to export datatable to excel here is the code add(new LinkVoid(export){ @Override public void onClick() {

Dynamically rotating form and static (or not so static) page links.

2011-01-19 Thread Brown, Berlin [GCG-PFS]
1. If my submit links (see B) down below are built when the page is built. But I have a panel that is constantly changing. How can I change the links to become associated with a new form. Just do addOrReplace(on the links)? 2. Is there a way to force a submit on a form. E.g. as opposed to

RE: Wicket at FOSDEM 2011

2011-01-19 Thread John Owen
I wish I could! A trip to Brussels is outside my training budget. ;) -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Wednesday, January 19, 2011 3:44 AM To: users@wicket.apache.org Subject: Wicket at FOSDEM 2011 All, I'll be giving a talk about

Re: Calling wicket modal popup from non-wicket

2011-01-19 Thread Igor Vaynberg
your best bet is to use a non-wicket modal and iframe a wicket page into it. -igor On Wed, Jan 19, 2011 at 3:12 PM, Nelson Segura nsegu...@gmail.com wrote: We are slowly migrating a JSP app to wicket. Parts of our app are written in Wicket, but most of it is still JSP. We need to integrate

Re: [Ljava.lang.String; cannot be cast to java.lang.String - BookmarkablePageRequestTargetUrlCodingStrategy

2011-01-19 Thread Douglas Ferguson
tomcat On Jan 18, 2011, at 2:49 PM, Igor Vaynberg wrote: not sure then. seems rather strange that you cant reproduce it locally. what container is it running in? -igor On Tue, Jan 18, 2011 at 12:41 PM, Douglas Ferguson doug...@douglasferguson.us wrote: There is no proxy On Jan 18,

Re: [Ljava.lang.String; cannot be cast to java.lang.String - BookmarkablePageRequestTargetUrlCodingStrategy

2011-01-19 Thread Igor Vaynberg
well, dont know what to tell you. seems really strange to me. -igor On Wed, Jan 19, 2011 at 5:08 PM, Douglas Ferguson doug...@douglasferguson.us wrote: tomcat On Jan 18, 2011, at 2:49 PM, Igor Vaynberg wrote: not sure then. seems rather strange that you cant reproduce it locally. what

Re: Component failed to render..

2011-01-19 Thread nino martinez wael
Didnt Think so either, thanks On Jan 19, 2011 6:56 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: not really -igor On Wed, Jan 19, 2011 at 6:36 AM, nino martinez wael nino.martinez.w...@gmail.com wrote: Are there a easy way to pickup failed components and replace them with a specific

Re: Dealing with JSON request

2011-01-19 Thread nino martinez wael
Id use gson with a filter, not sure if gson has one. Id go with Jersey an make wicket guide managed. On Jan 19, 2011 7:25 PM, Martin Grigorov mgrigo...@apache.org wrote: pass it in POST body and then parse it with any Java JSON library (e.g. google's gson) On Wed, Jan 19, 2011 at 6:47 PM,