RE: FormComponentPanel resets my user's input when an error is reported

2013-05-17 Thread Paul Bors
N/M, forgot about the valid() method J ~ Thank you, Paul Bors From: Paul Bors [mailto:p...@bors.ws] Sent: Friday, May 17, 2013 5:35 PM To: users@wicket.apache.org Subject: FormComponentPanel resets my user's input when an error is reported Suppose I want to preserve my user's ra

FormComponentPanel resets my user's input when an error is reported

2013-05-17 Thread Paul Bors
Suppose I want to preserve my user's raw input when I wrap some form fields inside a FormComponentPanel after an error is generated, would I be wrong to only update my form field's model only for the first time around and thereafter only for Ajax requests? I've notice that the raw user input is

Re: Wizard issue in Development mode

2013-05-17 Thread Martin Grigorov
Hi, On Fri, May 17, 2013 at 6:55 PM, yjordens wrote: > Config details: > 6.6.0 > 1.5.5 > 1.4.19 > I'd highly recommend you to use the same versions of the Wicket libraries. Since you use Apache Wicket 6.6.0 then also use Wicket Security and WicketStuff 6.6.0, or at leas

Re: AutoCompleteTextField issues

2013-05-17 Thread saty
Thanks!! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AutoCompleteTextField-issues-java-lang-String-cannot-be-cast-to-tp4658798p4658912.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Example for advanced grid for wicket with timer/date picker controls

2013-05-17 Thread Bruno Moura
Thanks Sebastien. I'll verify your links and I hope some one will help me a lot! Regards Bruno Moura 2013/5/17 Sebastien > Hi Bruno, > > If you plan to use jQuery UI, you way find a DatePicker (for wicket 1.5 or > 6) here for instance: > http://www.7thweb.net/wicket-jquery-ui/datepicker/Defa

Re: Retrieve a value of textField and set the property of the Model

2013-05-17 Thread Bruno Moura
Hi Martin I have used this pastie http://pastie.org/7922079 as you requested. The problem that I really stuck in retrieve the value of the textField description, inside a listView and the selected value of DDC neither. And without these values I can't set the properties name and description for t

Re: IE7 Submit button stops working

2013-05-17 Thread Entropy
SOLUTION: It was the tags. Replace them with and it works fine. What a simple little cause of a wierd @ss problem. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/IE7-Submit-button-stops-working-tp4658857p4658907.html Sent from the Users forum mailing list archi

Re: Wizard issue in Development mode

2013-05-17 Thread Sven Meier
IDebugSettings#componentUseCheck() is false for DEPLOYMENT configuration. Wizards uses a feedbackPanel, so you will have to add a corresponding tag to your markup. You can set it invisible though. Sven On 05/17/2013 05:55 PM, yjordens wrote: Config details: 6.6.0 1.5.5

Wizard issue in Development mode

2013-05-17 Thread yjordens
Config details: 6.6.0 1.5.5 1.4.19 2.5 jdk 17.0_02 Tomcat-7.0.37 Issue details: Wen running my application in development mode I get an issue rendering my Wizard page: org.apache.wicket.WicketRuntimeException: The component(s) below failed to render. Possible reaso

Re: Example for advanced grid for wicket with timer/date picker controls

2013-05-17 Thread Sebastien
Hi Bruno, If you plan to use jQuery UI, you way find a DatePicker (for wicket 1.5 or 6) here for instance: http://www.7thweb.net/wicket-jquery-ui/datepicker/DefaultDatePickerPage The DatePickerBehavior is also available in case you want to make your own... https://github.com/sebfz1/wicket-jquery-

Re: IE7 Submit button stops working

2013-05-17 Thread Entropy
Still more info: I drilled into my panel, and began removing things to find what component might be interacting poorly with the enabling. I found that it is my ajaxbuttons. If I remove all four, the page works. If I put ANY of the four back in, it interacts with the enabling to cause the form s

Re: Call me page wicket from in page.jsp

2013-05-17 Thread Alis
Hello! The problem is that we no longer need two separate applications, but the application contain wicket in the other. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Call-me-page-wicket-from-iframe-in-page-jsp-tp4658716p4658902.html Sent from the Users forum ma

Re: Call me page wicket from in page.jsp

2013-05-17 Thread Alis
Hello! The problem is that we no longer need two separate applications, but the application contain wicket in the other. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Call-me-page-wicket-from-iframe-in-page-jsp-tp4658716p4658901.html Sent from the Users forum mail

Re: I"ll really apreciate the help to get the selected item of a DropDownChoice using Scala

2013-05-17 Thread Martin Grigorov
The selected value is reachable thru: customer.getName On Fri, May 17, 2013 at 4:33 PM, Bruno Moura wrote: > Martin, the DDC has already created with the sema object type in the > constructor > for PropertyModel, listCustomer, and ChoiceRenderer > > new DropDownChoice("customerSelection", > new

Re: Example for advanced grid for wicket with timer/date picker controls

2013-05-17 Thread Bruno Moura
Thanks Martin I will investigate this and how add a datepicker behaviour in a textField. Bruno Moura 2013/5/17 Martin Grigorov > Hi Bruno, > > WicketStuff provides two grid components - InMethod Grid and EnhancedGrid. > DatePicker usually is just a behavior added to a TextField. It should be

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Martin, Thanks for your help! I was struggling two issues: 1) ContentDisposition in my URL was ATTACHENT and should be INLINE 2) Somehow on my page is not working in my Chome (works as expected in FF) Currently I have 2 working solutions :) On Fri, May 17, 2013 at 6:52 PM, Martin Grigorov wro

Re: I"ll really apreciate the help to get the selected item of a DropDownChoice using Scala

2013-05-17 Thread Bruno Moura
Martin, the DDC has already created with the sema object type in the constructor for PropertyModel, listCustomer, and ChoiceRenderer new DropDownChoice("customerSelection", new PropertyModel[Customer](customer, "name"), listCustomer, new ChoiceRenderer[Customer]("name"))* But I need only a piece

Re: InMethod Grid DropDownChoiceColumn & DropDownChoicePanel

2013-05-17 Thread shashikant.kulkarn...@gmail.co
Sorry for the image. I will try your solution. Here is the entire method which creates columns. I have 3 drop down choices in a row. If I select all the 3 at the same time I need to get the changed value of all of them. Please suggest. private List, Estimationmetadata, String>> getEstimat

Re: IE7 Submit button stops working

2013-05-17 Thread Entropy
More More Info: Tried keeping the recipients panel enabled, wondering if it being enabled was the problem or changing it via ajax was the problem. It appears that if it is always enabled the bug happens. So it's not the act of changing it. -- View this message in context: http://apache-wicket

Re: Call me page wicket from in page.jsp

2013-05-17 Thread Richard W. Adams
It's unclear what your issue is. By definition, different applications (& different users) have separate sessions. From: Alis To: users@wicket.apache.org Date: 05/16/2013 03:45 PM Subject:Re: Call me page wicket from in page.jsp Thank you! How do I keep the same session ev

Re: InMethod Grid DropDownChoiceColumn & DropDownChoicePanel

2013-05-17 Thread Martin Grigorov
Hi, Better use some Pastebin service instead of using images because we cannot modify your code to make it working. The problem is that you use : new Model(selectedValue) as a main model for the DropDownChoice. You should use something like : new PropertyModel(this, "selectedValue"), assuming "se

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
On Fri, May 17, 2013 at 2:04 PM, Maxim Solodovnik wrote: > Unfortunately Html5Video seems to be not available to work with > ResourceStreams, only static urls :( > > I'll try to ask more generic wicket question: > I would like to implement following: > > > > > > > in java I have: > WebMark

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
On Fri, May 17, 2013 at 2:33 PM, Maxim Solodovnik wrote: > Is it possible to create mounted resources available only to some users? > I mean I would like to show video created by userA to userA only. > All videos are stored in the same folder on the server (historically). > You have access to the

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
I can commit my not working and paste the link to the SVN here. Video->Rclick->save video works as expected, but not play :( On Fri, May 17, 2013 at 6:33 PM, Maxim Solodovnik wrote: > Is it possible to create mounted resources available only to some users? > I mean I would like to show video cre

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Is it possible to create mounted resources available only to some users? I mean I would like to show video created by userA to userA only. All videos are stored in the same folder on the server (historically). On Fri, May 17, 2013 at 6:29 PM, Martin Grigorov wrote: > On Fri, May 17, 2013 at 2:04

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
On Fri, May 17, 2013 at 2:04 PM, Maxim Solodovnik wrote: > Unfortunately Html5Video seems to be not available to work with > ResourceStreams, only static urls :( > Can you use a mounted resource that streams the content ? > > I'll try to ask more generic wicket question: > I would like to impl

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Unfortunately Html5Video seems to be not available to work with ResourceStreams, only static urls :( I'll try to ask more generic wicket question: I would like to implement following: in java I have: WebMarkupContainer player = new WebMarkupContainer("player"); WebMarkupContainer srcMp4

Re: Stateless pages

2013-05-17 Thread Benedikt Schlegel
Thanks for your quick response, guys! Got it working. No session expired message for now. Very helpful was the hint on how to decide between new/expired session but also the general information about stateless-ness. And your guide is awesome, Andrea! Can't believe I didn't run across this earlier

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry On Fri, May 17, 2013 at 4:40 PM, Martin Grigorov wrote: > http://repo1.maven.org/maven2/org/wicketstuff/wicketstuff-html5/6.7.0/ > > > On Fri, May 17, 2013 at 12:29 PM, Maxim Solodovnik >wrote: > > > Th

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
http://repo1.maven.org/maven2/org/wicketstuff/wicketstuff-html5/6.7.0/ On Fri, May 17, 2013 at 12:29 PM, Maxim Solodovnik wrote: > The latest version available in maven is > 1.5-rc2.1/< > http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/1.5-rc2.1/> > 26-Mar-2011 17:31 > > Is it compat

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
The latest version available in maven is 1.5-rc2.1/ 26-Mar-2011 17:31 Is it compatible with Wicket 6? On Fri, May 17, 2013 at 4:27 PM, Maxim Solodovnik wrote: > Thanks a lot! > > > On Fri, May 17, 2013 at 4:20 PM, Martin Gr

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Thanks a lot! On Fri, May 17, 2013 at 4:20 PM, Martin Grigorov wrote: > Hi Maxim, > > WicketStuff-Html5 project is ASL2, so you can use it. > > > On Fri, May 17, 2013 at 12:14 PM, Maxim Solodovnik >wrote: > > > Hello All, > > > > According to wicketstuff rules if component does not declaring ow

wicket-atmosphere, named Broadcasters

2013-05-17 Thread Leonid Bogdanov
Hello!     Atmosphere framework supports named Broadcasters that can be treated as topics to which only interested clients are subscribed. Is it possible to support named Broadcasters in wicket-atmosphere EventBus class?     As a workaround of this currently missing feature I tried to use a Re

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
Hi Maxim, WicketStuff-Html5 project is ASL2, so you can use it. On Fri, May 17, 2013 at 12:14 PM, Maxim Solodovnik wrote: > Hello All, > > According to wicketstuff rules if component does not declaring own license > - it is AL. > I was unable to find license for wicket-html5, but on the old pro

wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Hello All, According to wicketstuff rules if component does not declaring own license - it is AL. I was unable to find license for wicket-html5, but on the old project root at code.google.com/p/wickethtml5 the project is declared as GPLv2. If it is GPLv2 can anybody help me to create callback can

Re: I"ll really apreciate the help to get the selected item of a DropDownChoice using Scala

2013-05-17 Thread Martin Grigorov
Hi Bruno, On Fri, May 17, 2013 at 6:12 AM, Bruno Moura wrote: > Hi Martin > > But the DDC doesn't have a constructor with PropertyModel[String](this, > "custName") > only a property model with the Object/Pojo as I was using. > String is an Object, no ? ;-) > > Sorry, I'm new in the world of