Re: [announce] Wicket Security 1.4 released!

2010-06-11 Thread Emond Papegaaij
On Wednesday 09 June 2010 21:30:39 ViShap wrote: I just stumbled upon this announce and didn't have the time to dig deep into the code, and the links you suggested don't mention anything, so i have a short question: Is it possible to use annotations instead of that manual hive-file? If

jWicket, DD + sort

2010-06-11 Thread Stefan Lindner
To all users with questions about position and sorting problems: I'm implementing jQuery Sortable because jQuery Accordion has an option 'sortable'. This will look like this class MyClass implements ISortable { ... onSorted(final int newPosition) {

Re: gmail like file upload

2010-06-11 Thread Martin Grigorov
http://wicketstuff.org/wicket14/upload/multi On Thu, 2010-06-10 at 21:52 -0700, fachhoch wrote: I want to have gmail like file upload in my application , I want to have ajax multi file upload , please suggest me . - To

Re: gmail like file upload

2010-06-11 Thread Johan Compagner
Gmail is by the way not ajax but a flash application. There is an opensource flash app i think on sourceforge that does pretty much the same as gmail. - Original message - I want to have gmail like file upload  in my application ,  I want to have ajax  multi file upload  ,

SV: gmail like file upload

2010-06-11 Thread Wilhelmsen Tor Iver
Gmail is by the way not ajax but a flash application. There is an opensource flash app i think on sourceforge that does pretty much the same as gmail. Is this some other uploading than uploading attachments to mails? Because that uses Ajax not Flash. - Tor Iver

Re: gmail like file upload

2010-06-11 Thread arjun dhar
Check out: https://www.ibm.com/developerworks/web/library/wa-aj-dwr/ --- On Fri, 6/11/10, Martin Grigorov mcgreg...@e-card.bg wrote: From: Martin Grigorov mcgreg...@e-card.bg Subject: Re: gmail like file upload To: users@wicket.apache.org Date: Friday, June 11, 2010, 1:08 PM

radiochoice values

2010-06-11 Thread denisa
Hi! I have a bean with enum field. When I implements radiochoice model by this enum field in html radiochoise code i see: input name=rubrics:0:rubricAccessType value=0 id=rubricAccessType5-0 type=radiolabel for=rubricAccessType5-0YES/labelbr input name=rubrics:0:rubricAccessType value=1

Re: [announce] Wicket Security 1.4 released!

2010-06-11 Thread david_
Personally I think the hive file is sufficient. Also annotations take more time to compile :) 2010/6/11 Papegaaij [via Apache Wicket] ml-node+2251368-1151411741-232...@n4.nabble.comml-node%2b2251368-1151411741-232...@n4.nabble.com On Wednesday 09 June 2010 21:30:39 ViShap wrote: I just

Wicket Ajax Event on Component with Parameters

2010-06-11 Thread MattyDE
Hi Folks, i want to add an custom Event filter to an HTML-Component. So that another plugin/function or something else, on client-side could call this event and transfer some parameters (by ajax-post) to wicket on server-side. Any Ideas for this? I Tried with gridView.add(new

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread Ernesto Reinaldo Barreiro
append the parameter to the URL? Just try url+ids=test and see if you get it. Ernesto On Fri, Jun 11, 2010 at 12:39 PM, MattyDE ufer.mar...@gmail.com wrote: Hi Folks, i want to add an custom Event filter to an HTML-Component. So that another plugin/function or something else, on client-side

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread MattyDE
How should i do this from a client-side call? I dont know with Parameter will be submited from there. strictly speaking i want do transfer a json Object to server-side through the Event Call. -- View this message in context:

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread Ernesto Reinaldo Barreiro
Hi, On Fri, Jun 11, 2010 at 12:59 PM, MattyDE ufer.mar...@gmail.com wrote: How should i do this from a client-side call? I dont know with Parameter will be submited from there. Doesn't your component knows what to transfer? I really do not understand what you want to try to achieve... I have

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread MattyDE
Okay, i'll try to explain what i want/have to do, with my noob-english ;) I've written my own gridview component for a big web-application. And some-one else who is responsible for the client-side thing, want to tell my gridview hey yo, filter this values i submit to you!. So i thought,

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread Ernesto Reinaldo Barreiro
Hi, Why not use Wicket standard AJAX submit machinery instead? And have the grid rebuild itself after AJAX submit? Ernesto On Fri, Jun 11, 2010 at 1:20 PM, MattyDE ufer.mar...@gmail.com wrote: Okay, i'll try to explain what i want/have to do, with my noob-english ;) I've written my own

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread MattyDE
And how could i do this? I dont want to reload the grid or anything. I just want to KNOW whats happen on client-side... in some scenarios... in My Example: the user filters the grid totally client-side. But the Filter-Plugin should tell my gridview-Component WHICH lines are still visible

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread Ernesto Reinaldo Barreiro
Then the grid component should know what to send to the server side;-) That's completely similar to the example I showed with AJAX slider (slider sends positions to server side). Your grid will have to iterate over the rows state (on client side) put that information into a parameter and send it

Re: Wicket Ajax Event on Component with Parameters

2010-06-11 Thread MattyDE
No the Grid Component doesnt know this or want to know this on client-side. Is it not possible just to implement a method, which could be called by : $(#gridview).trigger(filter, { 'ids': [1,12,355]}); totally from outside? -- View this message in context:

Re: gmail like file upload

2010-06-11 Thread Piotr Tarsa
Gmail works with flash disabled suggesting it doesn't use Flash. Probably there's some Flash progress indicator but I don't use and see that. 2010/6/11 Johan Compagner jcompag...@gmail.com Gmail is by the way not ajax but a flash application. There is an opensource flash app i think on

Re: gmail like file upload

2010-06-11 Thread fachhoch
google search for gmaio like file upload bought me this http://code.google.com/p/gwtupload/ my question is how can I have a gwt iframe inside wicket page ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/gmail-like-file-upload-tp2251270p2251720.html Sent from

RE: radiochoice values

2010-06-11 Thread Russell Simpkins
I created a HashMapChoiceRenderer which extends ChoiceRenderer. I'm not sure if this is the best way to go about it, but it worked for me to specifically set the value with a set of checkboxes. disclaimer : hotmail munches code, so you will want to throw this code into an ide and format it.

Re: gmail like file upload

2010-06-11 Thread Martin Grigorov
On Fri, 2010-06-11 at 05:08 -0700, fachhoch wrote: google search for gmaio like file upload bought me this http://code.google.com/p/gwtupload/ my question is how can I have a gwt iframe inside wicket page ? See InlineFrame.java

OT: html validator that parses add'l dtd's?

2010-06-11 Thread Nikita Tovstoles
Can anyone recommend a validator (browser plugin, online, or eclipse plugin) that won't complain about wicket tags when dtd is declared properly. W3C complains about those tags even if the following is declared: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN

session with new browser window

2010-06-11 Thread fachhoch
My wicket application is launched from servlet based application, the servlet based application has a link clicking on that it opens a new window with url to my application. then my application creates a session etc.Now does the two application use the same session if the are deplyed in one

Re: OT: html validator that parses add'l dtd's?

2010-06-11 Thread nicolas melendez
set up your app en deployment mode, or copy the development mode setup of wicket and modify it in order to not show wicket:id tag On Fri, Jun 11, 2010 at 3:36 PM, Nikita Tovstoles nikita.tovsto...@gmail.com wrote: Can anyone recommend a validator (browser plugin, online, or eclipse plugin)

Re: OT: html validator that parses add'l dtd's?

2010-06-11 Thread Nikita Tovstoles
right, that avoids having to validate wicket tags. However, since the URL to the wicket DTD is provided, it'd be nice to validate the dev mode doc as well (or at least not see false errors while running a validator in dev mode) On Fri, Jun 11, 2010 at 3:07 PM, nicolas melendez

DateTime rendered in a single textfield (FORMAT =MM/dd/yy kk:mm)does not hold to kk:mm values when a date is selected in a datepicker

2010-06-11 Thread jammyjohn
I wrote my own class MilitaryDateTimeField extends TextFieldDateTime implements AbstractTextComponent.ITextFormatProvider which displays both date and time in a single text field in the format mentioned above. But the problem is, if I select a different date, the textfield renders with