Questions tagged [wicket-7]

83 questions
0
votes
1 answer

How to use protected IFeedbackMessageFilter[] getFilters() in wicket 6.x or 7.x

I am trying to convert below code from wicket-1.4.9 to wicket-6.x/7.x, but not getting solution. Please help in this as I am new to Apache Wicket @Override protected IFeedbackMessageFilter[] getFilters() { final List
S.P. ROOPESH
  • 65
  • 11
0
votes
2 answers

IRequestCycleProcessor in Apache wicket 6.X and 7.x

I am using wicket 1.4.9 Now migrating to newer version 7 or 6 , How to use below code in 6.6.0 protected IRequestCycleProcessor newRequestCycleProcessor() { return new WebRequestCycleProcessor() { protected…
S.P. ROOPESH
  • 65
  • 11
0
votes
1 answer

Apache-wicket migration to new Version from 1.4.9 to 6.x or 7.x

I am using wicket 1.4.9 Now migrating to newer version 7 or 6 , But I am unable to get wicket-.6.0 / wicket-7.7.0 jar files, In mvn repository only artifact id and all given but it's not working, And even there is not Download option to copy…
S.P. ROOPESH
  • 65
  • 11
0
votes
3 answers

How to pass value from Javascript to Wicket?

I have Javascript method, that performs some business logic at client end and returns a values. Now I need this value in my wicket page. What is the best way to go about this? P.S. I am using Wicket 7.
Soumitri Pattnaik
  • 3,246
  • 4
  • 24
  • 42
0
votes
2 answers

how to set focus in textbox after responsePage in wicket 7?

I want to set focus to specific component after I go back to my FirstPage.. PageParameters pageParameters = new PageParameters(); setResponsePage(new SecondPage(pageParameters) { @Override public void doSelect(Integer ID) { …
Rendy
  • 11
  • 4
0
votes
0 answers

Wicket - Form not submitting

I just upgraded a Wicket application from 6.0.0 to 7.6.0 and now I am having problems with one of my forms not submitting. I went through the versions and my form was working in version 6.12.0 and not working in 6.14.0 there were other problems with…
Cronus
  • 1
  • 4
0
votes
1 answer

WicketTester: Determine which component has focus

I have a form that focuses a different component based on state when it loads. Is there a way with WicketTester, or some other Wicket test tool, to determine which component currently has focus? For example, a form with username and password. When…
JeredM
  • 897
  • 1
  • 14
  • 25
0
votes
3 answers

Processing single input field with ajax in Apache Wicket

I have a form with several input fields and one special field, that I want to process with ajax. The thing is, that I want to process only that field after the AjaxLink has been clicked. Without processing of the whole form. I want to access the…
Mateusz Moroz
  • 312
  • 2
  • 6
  • 19
0
votes
1 answer

How to get Label from IValidatable in Wicket 7

Is it possible to get the label of my component inside a validation? I need this label for a custom error message in my validation. It looks like: "The value may not be less than {0}." If my component has a label then i want to write it before…
Zkyy
  • 3
  • 2
0
votes
0 answers

Wicket Deployment mode map resources wrong way

I have Page getRootRequestMapperAsCompound().add(new NoVersionMapper("/card/${cardId}", CardPage.class));. On this page there is TinyMCE4 editor. Which try to load images using relative path "images/1.jpg" I've added resource mapping to allow…
Yevgen Kulik
  • 5,713
  • 2
  • 22
  • 44
0
votes
1 answer

Update a label which used multiple times

I have a label which is used mutiple times in my page. It works fine, until I try to update the label per ajax. Result: only the first label gets updated. Is it a known issue? I'm not sure, since I can't open the JIRA page:…
0
votes
1 answer

Login failed on Wicket 7 with Spring Security 4.1

After upgrading from Wicket 6.23.0 to 7.4.0 the Login on my Wicket Page does not work anymore. I get an PageExpiredException: 14:50:31,772 WARN [RequestCycleExtra] (default task-20) ******************************** 14:50:31,773 WARN …
knobli
  • 657
  • 1
  • 9
  • 18
0
votes
1 answer

How to validate wicket form sequencly

I am new to wicket framework. currently i have a task to validate the form fields one by one (sequence). but By default Wicket shows error messages together in a one place in the form. I want the field to be validated sequential is there any…
soorapadman
  • 4,451
  • 7
  • 35
  • 47
0
votes
2 answers

How to include default css file for Wicket Palette?

I have the same problem as described in Palette does not render arrows since Wicket 7.x.x The example includes a link with the href palette-ver-48087C00867DD23918CC93E129A02A8D.css. How can I include the css file from 1) an imported jar file, or 2)…
JoeAB
  • 53
  • 9
0
votes
1 answer

Wicket.Ajax.ajax working not like ajax, but like normal http query

i use Wicket.Ajax.ajax in pair with AbstractDefaultAjaxBehavior to sent some javascript calculated data to the java. But after event has fired from javascript and comes to Java, browser has been redirected to callback…
Yevgen Kulik
  • 5,713
  • 2
  • 22
  • 44