Re: resources in wicket have problem.

2021-06-08 Thread vahid ghasemi
Hi thanks for all answers and helps. I find problem and resolve that. problem was in BasePage.html in first line into head tag. it was cause of my issue and after deleting my project working well. again thanks for all of you :* ‫‪Francois Meillet‬‏ <‪francois.meil...@gmail.com‬‏> در ت

Re: CompoundPropertyModel - white space

2021-06-08 Thread Mihir Chhaya
Thank you, Sven. This is working. As always, The Apache Wicket team ROCKS !! -Mihir. On Tue, Jun 8, 2021 at 3:54 PM Sven Meier wrote: > Hi, > > by default textfields trim their input, so I'd expect the total count > characters to be correct to the processed input: > >"f " + "m" + "l" -> "f

Re: CompoundPropertyModel - white space

2021-06-08 Thread Sven Meier
Hi, by default textfields trim their input, so I'd expect the total count characters to be correct to the processed input:   "f " + "m" + "l" -> "fml" = 3 characters (also a space was entered after the *f* You might want to override #shouldTrimInput if you want to keep the whitespace. Ha

CompoundPropertyModel - white space

2021-06-08 Thread Mihir Chhaya
Hello, Apache Wicket version used: 8.12.0 I need to show total characters entered into First, Middle and Last name text fields + one drop down for Suffix. The combined length of these four fields should not exceed the set limit. For this, I have added OnChangeAjaxBehavior to all the three text fi

Re: resources in wicket have problem.

2021-06-08 Thread Francois Meillet
Could you disable JavaScript in your browser and test your page ? Or in your MetronicAssets, comment all JavaScriptReferenceHeaderItems. PS: create a quickstart with this tool https://wicket.apache.org/start/quickstart.html François > Le 8 ju

Re: resources in wicket have problem.

2021-06-08 Thread vahid ghasemi
I'll do that but I'm not sure about working. i think if you clone the project and test it you can easily know about the problem. my problem is not just images and also in this status all of my js and css working. my links don't work and this problem is inconsequential to resources. pls clone and ju

Re: resources in wicket have problem.

2021-06-08 Thread Bergmann Manfred
Hi. Just had a quick look. I find it quite difficult to see through. Too many involved classes. All the assets you have in your ’java’ source root should actually be in ‚resources‘, that’s what this is for. Some build tools (I believe also IntelliJ by default) don’t even copy resources from the

Re: resources in wicket have problem.

2021-06-08 Thread vahid ghasemi
test & ui packages are main packages and others are not important. ir.iais.test.MyApplication is starting. an my two pages is: ir.iais.test.panelTest.LabelPage.java ir.iais.test.panelTest.PabelPage.java These Panels are extended from BasicPage which is extended from ir.iais.ui.BasePage. BasePage.ht