Re: peculiarities with wicket hibernate

2014-04-17 Thread Yahoo
Solved: It was the definition of the equals function in the hibernate beans. Am 14.04.2014 10:29, schrieb Yahoo: I got a step further with the following definitions I succeded to Insert the ManyToOne relationships. Only the DropDownChoices don't write the changes back in the Model: In the hybe

Re: Wicket CDI application junit test

2014-04-17 Thread Duke
Hi Stepan! Do you try DeltaSpike yourself? I try to run cdi in tests just like in this guide . And weld-se is failed in a simple test debuuging on a cdiContainer.boot(); with many WELD-001409 exceptions, l

I saw messy code in 'wicket-examples-6.14.0-sources.jar' when I'v decompressed this jar.

2014-04-17 Thread 003210
Hi, I saw messy code in 'wicket-examples-6.14.0-sources.jar' when I'v decompressed this jar. i.e org.apache.wicket.examples.encodings.Home line 43, code goes 'add(new Label("message", "Hello world! Test: ���")); ' org.apache.wicket.examples.linkomatic.Home line 102, code goes '.add("bookmarkpar

Re: Re: One example question:

2014-04-17 Thread 003210
Hi, As you explaned, I infer that this 'TabbedPanelPage.this.getDefaultModel()' should return one model obtaining object String, which String would be just the Class tag attribute in markup. Have I understood u aright? So why use the Class tag attribute itself replace the Class tag attribute itse

Brix dead?

2014-04-17 Thread nino martinez wael
How are brix moving along...seems to be a little dead, not much going on in github? Regards Nino

Re: Modal Window and RestartResponseException

2014-04-17 Thread Ernesto Reinaldo Barreiro
Hi, http://comments.gmane.org/gmane.comp.java.wicket.user/80841 ? On Thu, Apr 17, 2014 at 3:42 PM, Entropy wrote: > I have an ajaxlink on my modal window that takes the user to a new page, > one > the modal window is not on. I have traditionall done stuff like this with > RestartResponseExc

Re: jquery ui DatePicker

2014-04-17 Thread Dirk Wichmann
Hi, that's it, thanks a lot, sometimes the solution is so near. Cheers Dirk Am 17.04.2014 16:04, schrieb Sebastien: > new DatePicker("mydate", model, "dd.MM.", new > Options("dateFormat", Options.asString("dd.mm.yy"))); -

Re: jquery ui DatePicker

2014-04-17 Thread Patrick Davids
Hi Dirk, have a look at http://jqueryui.com/datepicker/#date-formats and http://api.jqueryui.com/datepicker/#option-dateFormat to change the javascript-side jquery date formatting pattern to 4-letter-year. (Pay attention, it is a bit different to java date patterns.) To do so, you have to apply t

Re: Validating multiple components as one

2014-04-17 Thread Christian Smolka
Hi Sven, unfortunately it would be a too great effort to change every usage of those input fields (because they are inside a library and are used very often). So I had to go along with Martin's suggestion. But anyway, thanks for the quick reply! Christian >> Do I have to put the fields into a f

Re: Validating multiple components as one

2014-04-17 Thread Christian Smolka
Hi Martin, thanks for your reply, it definitely made my day! I had to tweak the snippet a little, because Wicket.Form.serialize() returns an array of objects that does not really work out for the AJAX request. So I changed the value expression into Wicket.$(id).value and that worked perfectly. Th

Re: jquery ui DatePicker

2014-04-17 Thread Sebastien
Hi Dirk, If you are referring to wicket-jquery-ui datepicker: the jquery date format option should match the java date format, ie: new DatePicker("mydate", model, "dd.MM.", new Options("dateFormat", Options.asString("dd.mm.yy"))); Hope this helps, Sebastien. On Thu, Apr 17, 2014 at 3:48 P

Do wicket have one-whole doc includes all docs that allow download in one time?

2014-04-17 Thread 003210
Hi, This url (http://central.maven.org/maven2/org/apache/wicket/) provides separated docs , Do wicket have one-whole doc includes all docs that allow download in one time? 软件七部 孙雅斌 分机:58963399-5244 From: Martin Grigorov Date: 2014-04-17 15:15 To: 孙雅斌 CC: users Subject: Re: I do eagerly hop

I do eagerly hope could have API locally. Do Wicket provide API download url?

2014-04-17 Thread 003210
hi,Martin Grigorov, Do Wicket provide API download url, Since my network is not stable, I do eagerly hope could have API locally. sunnybean 58963399-5244

One example question:

2014-04-17 Thread 003210
Hi, For one example question: In org.apache.wicket.examples.compref.TabbedPanelPage on line 95, the sentence goes like "tabbedPanel.add(AttributeModifier.replace("class", TabbedPanelPage.this.getDefaultModel())); ". I have tow questions: 1、Dose the 'class' keyword in the markup stand for CSS Clas

Re: Wicked-Charts: This website contains interactive content

2014-04-17 Thread lacribeiro11
Hallo Martin, thank you for your help, I found a way to solve it. here is an example public class TestChart extends Chart { private static final long serialVersionUID = 1L; public TestChart(String id, Options options, Theme theme) { super(id, options, theme);

jquery ui DatePicker

2014-04-17 Thread Dirk Wichmann
Hi, is's quite frustrating, I use the jquery ui DatePicker for a valid to filed on a user form. Everything seems to be ok, but I want to display that a user don't expire and so I save 31.12. (german date format dd.MM.) in database. Now I try to edit a user and the init of the form is O

Modal Window and RestartResponseException

2014-04-17 Thread Entropy
I have an ajaxlink on my modal window that takes the user to a new page, one the modal window is not on. I have traditionall done stuff like this with RestartResponseException. But when I use that from the modal window, the new page renders INSIDE the modal window. Not the desired behavior. I t

Re: One example question:

2014-04-17 Thread Martin Grigorov
1) true 2) by using a model you can make the value dynamic, i.e. model.getObject() can return different values depending on some conditions. For example the class may be "even" for the even rows and "odd" for the odd rows. Read https://cwiki.apache.org/confluence/display/WICKET/Working+with+Wicket+

Re: Do wicket have one-whole doc includes all docs that allow download in one time?

2014-04-17 Thread Martin Grigorov
Hi, No. There is no such doc. If you use IDE like Intellij IDEA, Netbeans, Eclipse and if you use Maven-like build tool then you can tell them to download the javadoc automatically. Martin Grigorov Wicket Training and Consulting On Thu, Apr 17, 2014 at 10:41 AM, 003210 wrote: > Hi, > Th

Re: I do eagerly hope could have API locally. Do Wicket provide API download url?

2014-04-17 Thread Martin Grigorov
Hi, You can download all -javadoc.jar files from Maven repos - http://central.maven.org/maven2/org/apache/wicket/ Martin Grigorov Wicket Training and Consulting On Thu, Apr 17, 2014 at 6:27 AM, 003210 wrote: > hi,Martin Grigorov, > Do Wicket provide API download url, > Since my network