Two wikcet id in one tag

2012-04-05 Thread SudeepShakya
Is it possible to specify two wicket ids in one place. for example: tr wicket:id=vote,contestant I have created two propertylistview and i want to display both list in same table. Is it possible ?? I am just asking. -- View this message in context:

Re: Two wikcet id in one tag

2012-04-05 Thread Martin Grigorov
No. On Thu, Apr 5, 2012 at 9:16 AM, SudeepShakya shakyasud...@live.com wrote: Is it possible to specify two wicket ids in one place. for example: tr wicket:id=vote,contestant I have created two propertylistview and i want to display both list in same table. Is it possible ?? I am just

Re: Two wikcet id in one tag

2012-04-05 Thread SudeepShakya
Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Two-wikcet-id-in-one-tag-tp4534128p4534135.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Two wikcet id in one tag

2012-04-05 Thread Martin Makundi
Why don't you simply add two tr's: tr wicket:id=vote.../tr tr wicket:id=contestant.../tr ? ** Martin 2012/4/5 SudeepShakya shakyasud...@live.com: Is it possible to specify two wicket ids in one place. for example: tr wicket:id=vote,contestant I have created two propertylistview and i

Re: Inserting String/Date problem .

2012-04-05 Thread Luca Provenzani
Hi, this is not a wicket question, but a java question. However: why do you use String for a Date information? Statement has setDate method and wicket has DateField and DateTextField. Bye Luca Il 05/04/2012 07:27, SudeepShakya ha scritto: I have two textboxes which take dates using

Re: Inserting String/Date problem .

2012-04-05 Thread SudeepShakya
I have solved the problem but I want to ask question about DatePicker. DatePicker sets date in the format mm/dd/yy or may be dd/mm/yy but mySql's format is -mm-dd. How can i change the format how the DAtePicker sets the date ? -- View this message in context:

Re: Inserting String/Date problem .

2012-04-05 Thread Martin Grigorov
See org.apache.wicket.datetime.markup.html.form.DateTextField#forDatePattern() On Thu, Apr 5, 2012 at 11:38 AM, SudeepShakya shakyasud...@live.com wrote: I have solved the problem but I want to ask  question about DatePicker. DatePicker sets date in the format mm/dd/yy or may be dd/mm/yy but

About http get/post and request/response

2012-04-05 Thread SudeepShakya
I don't know servlet but i have to implement an operation which I think a servlet have done. The operation is that client sends keywords(which I have to save to database)(not through form) and by checking the keywords, I have to store it in database(valid or not valid) and send a response again

Re: About http get/post and request/response

2012-04-05 Thread Martin Grigorov
On Thu, Apr 5, 2012 at 11:47 AM, SudeepShakya shakyasud...@live.com wrote: I don't know servlet but i have to implement an operation which I think a servlet have done. The operation is that client sends  keywords(which I have to save to database)(not through form) and by checking the

Re: About http get/post and request/response

2012-04-05 Thread SudeepShakya
thanx -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/About-http-get-post-and-request-response-tp4534379p4534436.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe,

common data picker component

2012-04-05 Thread brazz
Hi, is there a component in wicket which acts like a datepicker but works for any content? I mean just a box where you can put your custom panels in. I need an alernative for a DropDown Box because if have about 400 entries. so i think of a little popup box with paging and filtering elements.

Page Expired with Google Analytics Tracking Code

2012-04-05 Thread Andre Schütz
Hello, we added the actual Google Analytics Tracking Code into our Wicket application. The code is rendered on every single page directly before the closing /head tag. Our problem is the following: Page 1 with search box - search for something Page 2 is a search site where the search request is

MultiLineLabel update from background thread

2012-04-05 Thread dankicd
Hi, I am not sure if this is a right forum for my question but I hope someone could help me. I have a following problem: there is an web application which in general enables user to run some test in background. Right now the output of these tests are displayed when they are finished. Problem is

Re: MultiLineLabel update from background thread

2012-04-05 Thread Martin Grigorov
Show us your code. On Thu, Apr 5, 2012 at 3:18 PM, dankicd ddan...@gmail.com wrote: Hi, I am not sure if this is a right forum for my question but I hope someone could help me. I have a following problem: there is an web application which in general enables user to run some test in

Re: MultiLineLabel update from background thread

2012-04-05 Thread dankicd
This would be a problem because it is corporate code and they wouldn't be so happy of publishing code :-(. But anyway I can wrote a sample similar code and post it here. -- View this message in context:

Re: common data picker component

2012-04-05 Thread Jürgen Lind
I would suggest using a jquery dialog to turn an arbitrary screen area that contains your custom components into a popup. J. On 05.04.2012 14:54, brazz wrote: Hi, is there a component in wicket which acts like a datepicker but works for any content? I mean just a box where you can put your

DropDownChoice - filtering and pagination

2012-04-05 Thread Michal Wegrzyn
Hi, What is the best way to create option components with Wicket for large datasets? DropDownChoice renders all contained items. Do you maybe know any wicket implementation of drop down choice which allows pagination? Other thing is filtering. I look for something similar to Dojo's

Re: DropDownChoice - filtering and pagination

2012-04-05 Thread Dan Retzlaff
Hi Michal, Paging and filtering in a single widget might be too much. An approach I took once is to use AutoCompleteTextField, and render an AJAX link at the bottom of the drop down that says Show All. When clicked, a modal pops up with a traditional AJAX-pageable DataView. I also added a

RE: IE9 Memory leak when updating component with Ajax (Wicket 1.5.5)

2012-04-05 Thread Heikki Uotinen
Hi, maybe there is some gc problem with closures in IE9 document mode. Simple test page leaks memory in IE9 mode even if first suspect Wicket.replaceOuterHtmlIE is commented out. Test with plain XMLHttpRequest does not leak memory in any case. This Wicket Ajax example also slowly grows if

field values

2012-04-05 Thread mnish tosh
Hi, This is the situation: I have a page with two tabs, on each of these tabs there are form fields. Some of the fields are the same on both the tabs. What I want to be able to do is when I click on the tabs back and forth the values of the fields be automatically taken to the other tab. Is this

Re: field values

2012-04-05 Thread Richard W. Adams
If you can detect the tab switch event, it should be a simple matter to copy the field values from one location to the other. From: mnish tosh mnisht...@gmail.com To: users@wicket.apache.org Date: 04/05/2012 02:01 PM Subject:field values Hi, This is the situation: I have

isVisible for DataTable columns?

2012-04-05 Thread Bertrand Guay-Paquet
Hi, I need to determine the visibility of a DataTable's column dynamically based on a model value. Is this possible? I looked at the source and didn't find anything available for implementations of IColumn to determine visibility. Searching the net revealed this post from 2008 with the same

1.5 Wicket Enclosure

2012-04-05 Thread Douglas Ferguson
I just found a different between 1.4 and 1.5 with regards to wicket enclosure. If you have a component in a wicket enclosure (say a feedback panel) and you set it visible false. Then subsequently try to set it visible true, wicket 1.5 will not be able to make it reappear. 1.4 had no problem

Re: AjaxRequestTarget.add(component) not replacing component, but duplicating it

2012-04-05 Thread Andrew Geery
You are correct: Chosen was indeed adding additional markup that was throwing off Wicket's ability to replace the form control. The workaround was to call jquery,remove to fix/clean up the DOM before Wicket attempted to replace the tag in the renderOnDomReadyJavaScript method of the behavior.