Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Martin Grigorov
Hi, I've just added a new article at http://wicketinaction.com/2012/11/uploading-files-to-wicket-iresource/ that shows how to integrate such JavaScript file upload widgets with Wicket. I hope it is useful for you! On Wed, Oct 24, 2012 at 1:54 PM, heapifyman heapify...@gmail.com wrote: Thanks.

Re: Remove cookie problem

2012-11-14 Thread cosmindumy
Hi again, The problem is that login is handled with acegi. How can I set the action of a form and use the POST method?. Then I have to add the needed parameters. Is something like this. form action=j_acegi_security_check method=POST /form Thanks. -- View this message in context:

Re: Remove cookie problem

2012-11-14 Thread Martin Grigorov
Hi, Add AttributeModifier to the Form component or override its onComponentTag(ComponentTag) method and use 'tag.put(name, value). On Wed, Nov 14, 2012 at 11:57 AM, cosmindumy cosmind...@yahoo.com wrote: Hi again, The problem is that login is handled with acegi. How can I set the action

Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Pierre Goupil
Good morning, Would guys be kind and share these codes, please? Not re-inventing the whell, you know. Thanks in advance best regards, Pierre On Wed, Nov 14, 2012 at 10:51 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, I've just added a new article at

Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Martin Grigorov
There is a link to my GitHub repo in the article. On Wed, Nov 14, 2012 at 12:00 PM, Pierre Goupil goupilpie...@gmail.comwrote: Good morning, Would guys be kind and share these codes, please? Not re-inventing the whell, you know. Thanks in advance best regards, Pierre On Wed, Nov 14,

Re: Wicket and file upload with blueimp jquery file upload

2012-11-14 Thread Pierre Goupil
Thanks! Sorry for not having read it until the end! :-) On Wed, Nov 14, 2012 at 11:03 AM, Martin Grigorov mgrigo...@apache.orgwrote: There is a link to my GitHub repo in the article. On Wed, Nov 14, 2012 at 12:00 PM, Pierre Goupil goupilpie...@gmail.com wrote: Good morning, Would

Re: any book about wicket 6?

2012-11-14 Thread Andrea Del Bene
What topics would you like to find in a hypothetical book on Wicket 6 :-)? On Tue, Nov 13, 2012 at 10:27 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, I'm not aware of such. But that doesn't mean that someone doesn't write one in stealth mode. On Tue, Nov 13, 2012 at 9:29 PM, Djalma

Re: any book about wicket 6?

2012-11-14 Thread Martin Grigorov
I have also asked a similar question once ( http://apache-wicket.1842946.n4.nabble.com/I-think-it-s-time-for-a-new-book-Igor-and-Co-tp4650687p4650796.html ) On Wed, Nov 14, 2012 at 12:39 PM, Andrea Del Bene an.delb...@gmail.comwrote: What topics would you like to find in a hypothetical book on

[Announce] wicket-plugin

2012-11-14 Thread Decebal Suiu
Hi I implemented a plugin framework for wicket that can be found at https://github.com/decebals/wicket-plugin I have a tiny demo application. The demo application is in demo folder. In demo/api folder I declared an extension point (Section) that is a tab in a wicket TabbedPanel. Each section

Re: [Announce] wicket-plugin

2012-11-14 Thread Martin Grigorov
Hi, I saw your todo: on Application.init() - getApplicationSettings().setClassResolver(new PluginClassResolver()); Take a look at org.apache.wicket.Application#getRootRequestMapperAsCompound. You will have to do something similar with CompoundClassResolver, as Jesse Long suggested in your

Re: [Announce] wicket-plugin

2012-11-14 Thread Decebal Suiu
Thanks Martin I'm working to implement this functionality. If you see some problems with my wicket-plugin implementation please tell me. Any suggestions and advice is welcome. Have a nice day, Decebal -- View this message in context:

Re: Wicket 6 and wicket push

2012-11-14 Thread Martin Grigorov
So you basically ask to just drop wicket-native-websocket module and continue with wicket-atmosphere only ? On Wed, Nov 14, 2012 at 4:32 PM, Nick Pratt nbpr...@gmail.com wrote: Could we combine the wicket-websocket and wicket-atmosphere projects in to one (wicket-push). Full browser support

Re: Wicket 6 and wicket push

2012-11-14 Thread Nick Pratt
If wicket-atmosphere already does websockets and provides long-polling as a fallback, and wicket-websocket just does websocket, maybe Im missing the reason for wicket-websocket (beyond it being thinner/lighter etc.). Maybe wicket-push has a pluggable websocket provider (similar to how Wicket

Re: Remove cookie problem

2012-11-14 Thread cosmindumy
Hi, Seems that action attribute cannot be modified. I want to handle the authentication with acegi. This means a redirct to j_acegi_security_check with post method. Can I find an example? I use wicket 1.4.19. Thanks. -- View this message in context:

Finding HTML Markup in External JARs

2012-11-14 Thread Richard W. Adams
We're enhancing a Wicket app which has been running in production for many months. One of the enhancements was adding a panel to a JAR (which we wrote) used by our app. The new panel works fine on the local workstation under Eclipse/Jetty, but fails when we deploy it to our JBOSS server.

Re: Finding HTML Markup in External JARs

2012-11-14 Thread Martin Grigorov
Hi, I'm 99% certain that the .html files are not in the .jar. Double check that they are actually packed with the .class files. On Wed, Nov 14, 2012 at 5:26 PM, Richard W. Adams rwada...@up.com wrote: We're enhancing a Wicket app which has been running in production for many months. One of

Re: Finding HTML Markup in External JARs

2012-11-14 Thread Richard W. Adams
I double checked, the html class files are indeed in the folder (see image below): Heres the error message: 2012-11-14 09:50:31,875 [ajp-10002-3] ERROR - Markup of type 'html' for component 'com.uprr.ecm.wicket.components.panels.location.PointLocationPanel' not found. Enable debug

Re: Finding HTML Markup in External JARs

2012-11-14 Thread Sven Meier
Depending on what your *PathLocator *does, it might not serve the usual markup from beside components. Wicket is finding HTML files in *other* JARs. This is a puzzler. That's strange indeed. Sven On 11/14/2012 04:58 PM, Richard W. Adams wrote: I double checked, the html class files are

Re: Finding HTML Markup in External JARs

2012-11-14 Thread Eric Jablow
On Wed, Nov 14, 2012 at 11:35 AM, Sven Meier s...@meiers.net wrote: Depending on what your *PathLocator *does, it might not serve the usual markup from beside components. Wicket is finding HTML files in *other* JARs. This is a puzzler. Could this be a ClassLoader issue? The two JAR files'

Re: wicketstff-minis 6.0.0 errors

2012-11-14 Thread saty
I have all these in given order prototip.css prototip-min.js prototype.js scriptaculous.js i do not see anything else required so does the order matter here? if it does how to change that in wicket. -- View this message in context:

wicketstff-minis 6.0.0 errors

2012-11-14 Thread saty
I am getting below two errors (app running under wicket 6.2), any help is appreciated to fix these, thanks ReferenceError: Prototype is not defined TypeError: Tip is not a constructor -- View this message in context:

Re: Finding HTML Markup in External JARs

2012-11-14 Thread Richard W. Adams
I've been digging into this all morning, and my current theory is that it's a file encoding problem. After adding the Maven resource plugin to my POM to force copying in UTF-8, I now get the identical error running on my Jetty on my workstation (which worked fine earlier this morning). Does

Re: Finding HTML Markup in External JARs

2012-11-14 Thread Richard W. Adams
Well, as usual, it's never what you think of. We have two experienced (?) developers looking at this all morning, no one noticed that the extension was hml instead of html. (Hides red face slinks away). From: Sven Meier s...@meiers.net To: users@wicket.apache.org Date: 11/14/2012

Re: wicket-bootstrap navbar - SEARCH button

2012-11-14 Thread Michael Haitz
hi, do you want to use wicket-bootstrap or do you want to implement it by yourself? best, Michael Am 23.10.2012 um 13:45 schrieb ronny.v...@consult.nordea.com: Hi There Any with a quick answer on how to implement a search like in: http://wb.agilecoders.de/demo/components?1#navbar

DropDownChoice.setNullValid

2012-11-14 Thread Nick Pratt
public ListString choices = Arrays.asList(null,RENDER,ENABLE); DropDownChoiceString defaultPerm = new DropDownChoice( perm, permModel, choices ); defaultPerm.setNullValid( true ); When this renders, I see a select box with 4 options - 2 blanks, and the two text options. I expected to only see

Re: DropDownChoice.setNullValid

2012-11-14 Thread Nick Pratt
As a followup - if you dont pass the null in the choices list, then it works as expected. On Wed, Nov 14, 2012 at 5:35 PM, Nick Pratt nbpr...@gmail.com wrote: public ListString choices = Arrays.asList(null,RENDER,ENABLE); DropDownChoiceString defaultPerm = new DropDownChoice( perm,

RE: wicket-bootstrap navbar - SEARCH button

2012-11-14 Thread Ronny.Voss
Hi I was as mentioned looking at demo, which includes a search. If wicket-bootstrap support such? I could not find? Regards Ronny -Original Message- From: Michael Haitz [mailto:michael.ha...@1und1.de] Sent: 14 November 2012 21:08 To: users@wicket.apache.org Subject: Re: