Wicket at www.heise.de

2020-07-16 Thread Tobias Soloschenko
Hi all,

Wicket is mentioned at www.heise.de - a german page for IT news:

https://www.heise.de/news/Java-Webframework-Apache-Wicket-9-baut-vollstaendig-auf-Java-11-LTS-4845258.html

https://translate.googleusercontent.com/translate_c?depth=1=1=aue=translate.google.com=auto=nmt4=en=https://www.heise.de/news/Java-Webframework-Apache-Wicket-9-baut-vollstaendig-auf-Java-11-LTS-4845258.html=ALkJrhh6-pOqmT3gRwLuLFOimkxYCnDQqg

kind regards

Tobias

[ANNOUNCE] WicketStuff 9.0.0 Released

2020-07-16 Thread Maxim Solodovnik
WicketStuff core 9.0.0 based on Apache Wicket 9.0.0 is released
and soon will be available at Maven Central!

The changelog is:

Maxim Solodovnik (6):
  Switching to the next development version
  Merge branch 'master' of github.com:wicketstuff/core
  Tests should be fixed
  Release preparation: dependencies are updated
  Possibly fixes #694: alternative way to resolve class
  Wicketstuff 9.0.0 is released

dependabot[bot] (3):
  Bump ignite-core in /datastores-parent/datastore-ignite (#692)
  Bump log4j.version from 2.13.1 to 2.13.3 (#695)
  Bump log4j-core (#696)

The WicketStuff team


AW: Change pageId Parameter structure

2020-07-16 Thread Ravi Knox
Hi Bas,

 

I refactored my code as you described and it works well so far.

 

Thanks a lot J

 

Ravi





Re: Wizard - showing Modal on "next" button

2020-07-16 Thread Sven Meier

Hi,

easiest solution is to do the confirmation in JS only:

        button.add(new Behavior() {
            @Override
            public void renderHead(Component component, IHeaderResponse 
response)

            {
response.render(OnEventHeaderItem.forComponent(component, "click", 
"return confirm('Do you really want to perform this action?');"));

            }
        });


NextButton of the WizardButtonBar is a simple Button and so it lacks a 
RequestTarget to refresh the ModalWindow


Yes, you can use AjaxWizardButtonBar instead, if you want to use a ModalWindow 
instead.
 


Have fun
Sven


On 15.07.20 16:14, Leonardo D'Alimonte wrote:

Hello,

I'm writing a Wizard with some steps inside which the user must follow.
I wonder if there's the chance to display a modal window with a warning
message when the user clicks the "Next" button, in order to ask for a
confirmation.

Once the user acknowledges the message with the OK button, step can be
marked as complete and the user can go on with the following steps.

Has someone ever experienced a usage like this? Do you have any suggestion
about how to implement this additional modal window?

NextButton of the WizardButtonBar is a simple Button and so it lacks a
RequestTarget to refresh the ModalWindow, is that correct?

Thanks,


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org