AW: AW: AW: AW: AW: Update ListMultipleChoice by Ajax

2017-01-16 Thread Christoph.Manig
Thank you. Now all is working fine :)


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net] 
Gesendet: Montag, 16. Januar 2017 11:07
An: users@wicket.apache.org
Betreff: Re: AW: AW: AW: AW: Update ListMultipleChoice by Ajax

Hi,

by default ListMultipleChoice passes the index of an item to the 
choiceRenderer. If your items do not implements #equals() and #hashcode(), the 
index will be -1 (see ListMultipleChoice#getModelValue()).

Note that IChoiceRenderer has a note about this in the javadoc.

Since you are using this index, the currently selected items are not identified 
- i.e. no item has an index==-1.

Hope this helps
Sven


On 16.01.2017 07:59, christoph.ma...@t-systems.com wrote:
> Can you explain what these methods equals() and hashCode() have to do?
>
>
> Mit freundlichen Grüßen
> Christoph Manig
>
> -Ursprüngliche Nachricht-
> Von: Sven Meier [mailto:s...@meiers.net]
> Gesendet: Freitag, 13. Januar 2017 13:41
> An: users@wicket.apache.org
> Betreff: Re: AW: AW: AW: Update ListMultipleChoice by Ajax
>
> Ah, it didn't have anything to do with Ajax or models after all:
>
> - PasswordTextField#setResetPassword(false) lets it render the 
> password (you don't have a login form here, so it's safe)
>
> - Group has to implement #equals() and #hashCode() *or* you have to 
> use an id value other than index (which is ChoiceRenderer's default)
>
> Have fun
> Sven
>
>
> On 13.01.2017 11:18, christoph.ma...@t-systems.com wrote:
>> Ok I created an Account on GitHub. Here is the example:
>> https://github.com/CManig/WicketChoiceExample
>>
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>>
>>
>> -Ursprüngliche Nachricht-
>> Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
>> Gesendet: Freitag, 13. Januar 2017 10:48
>> An: users@wicket.apache.org
>> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>>
>> you can use any publicaly available project hosting (your SVN, 
>> bitbucket, github etc.) Or you can create JIRA issue and attach your 
>> quickstart (I would use this option only if I know for sure it is 
>> JIRA
>> bug)
>>
>> On Fri, Jan 13, 2017 at 4:07 PM,  <christoph.ma...@t-systems.com> wrote:
>>> I've only have a GitLab Account will this also work for you? Can you send 
>>> me a link to the right place in Jira?
>>>
>>>
>>> Mit freundlichen Grüßen
>>> Christoph Manig
>>>
>>> -Ursprüngliche Nachricht-
>>> Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
>>> Gesendet: Freitag, 13. Januar 2017 10:05
>>> An: users@wicket.apache.org
>>> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>>>
>>> You can share github link
>>> or attach it to JIRA :)
>>>
>>> On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:
>>>> I created a small example. How can I send this to you?
>>>>
>>>>
>>>> Mit freundlichen Grüßen
>>>> Christoph Manig
>>>> Systems Engineer
>>>>
>>>> T-Systems International GmbH
>>>> Systems Integration - SC Travel, Transport & Logistics Annenstr. 5
>>>> 01067 Dresden
>>>> tel.:   +49 (0) 351 / 4744 - 188
>>>> fax:+49 (0) 351 / 4744 - 209
>>>> email:  christoph.ma...@t-systems.com
>>>>
>>>> T-SYSTEMS INTERNATIONAL GMBH
>>>> Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
>>>> Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri 
>>>> Abolhassan, Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen 
>>>> Rickmann
>>>> Handelsregister: Amtsgericht Frankfurt am Main HRB 55933 Sitz der
>>>> Gesellschaft: Frankfurt am Main WEEE-Reg.-Nr. DE50335567
>>>>
>>>>
>>>> -Ursprüngliche Nachricht-
>>>> Von: Sven Meier [mailto:s...@meiers.net]
>>>> Gesendet: Freitag, 13. Januar 2017 08:16
>>>> An: users@wicket.apache.org
>>>> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>>>>
>>>> Hi Christoph,
>>>>
>>>> a https://wicket.apache.org/start/quickstart.html allows us to debug the 
>>>> problem.
>>>>
>>>> You've probably got your model usage wrong, that will be hard to analyze 
>>>> without seeing more code.
>>>>
>>>> Regards
>>>> Sven
>>>>
>>>>
>>>> On 13.01.2017 08:08, christoph.ma...@t-systems.com wr

Re: AW: AW: AW: AW: Update ListMultipleChoice by Ajax

2017-01-16 Thread Sven Meier

Hi,

by default ListMultipleChoice passes the index of an item to the 
choiceRenderer. If your items do not implements #equals() and 
#hashcode(), the index will be -1 (see ListMultipleChoice#getModelValue()).


Note that IChoiceRenderer has a note about this in the javadoc.

Since you are using this index, the currently selected items are not 
identified - i.e. no item has an index==-1.


Hope this helps
Sven


On 16.01.2017 07:59, christoph.ma...@t-systems.com wrote:

Can you explain what these methods equals() and hashCode() have to do?


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Freitag, 13. Januar 2017 13:41
An: users@wicket.apache.org
Betreff: Re: AW: AW: AW: Update ListMultipleChoice by Ajax

Ah, it didn't have anything to do with Ajax or models after all:

- PasswordTextField#setResetPassword(false) lets it render the password (you 
don't have a login form here, so it's safe)

- Group has to implement #equals() and #hashCode() *or* you have to use an id 
value other than index (which is ChoiceRenderer's default)

Have fun
Sven


On 13.01.2017 11:18, christoph.ma...@t-systems.com wrote:

Ok I created an Account on GitHub. Here is the example:
https://github.com/CManig/WicketChoiceExample


Mit freundlichen Grüßen
Christoph Manig


-Ursprüngliche Nachricht-
Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
Gesendet: Freitag, 13. Januar 2017 10:48
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

you can use any publicaly available project hosting (your SVN,
bitbucket, github etc.) Or you can create JIRA issue and attach your
quickstart (I would use this option only if I know for sure it is JIRA
bug)

On Fri, Jan 13, 2017 at 4:07 PM,  <christoph.ma...@t-systems.com> wrote:

I've only have a GitLab Account will this also work for you? Can you send me a 
link to the right place in Jira?


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
Gesendet: Freitag, 13. Januar 2017 10:05
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

You can share github link
or attach it to JIRA :)

On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:

I created a small example. How can I send this to you?


Mit freundlichen Grüßen
Christoph Manig
Systems Engineer

T-Systems International GmbH
Systems Integration - SC Travel, Transport & Logistics Annenstr. 5
01067 Dresden
tel.:   +49 (0) 351 / 4744 - 188
fax:+49 (0) 351 / 4744 - 209
email:  christoph.ma...@t-systems.com

T-SYSTEMS INTERNATIONAL GMBH
Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri
Abolhassan, Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen
Rickmann
Handelsregister: Amtsgericht Frankfurt am Main HRB 55933 Sitz der
Gesellschaft: Frankfurt am Main WEEE-Reg.-Nr. DE50335567


-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Freitag, 13. Januar 2017 08:16
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

Hi Christoph,

a https://wicket.apache.org/start/quickstart.html allows us to debug the 
problem.

You've probably got your model usage wrong, that will be hard to analyze 
without seeing more code.

Regards
Sven


On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:

After refreshing the page I see the same page. Its not a listView it is a 
ListMultipleChoice.

What do you mean with a quickstart.


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Donnerstag, 12. Januar 2017 22:51
An: users@wicket.apache.org
Betreff: Re: AW: Update ListMultipleChoice by Ajax

Hm, with CompoundPropertyModel all inherited models after dropped on detach and 
re-acquired on following access.

So in theory that should work.

What happens if you refresh the page (F5) after clicking the Ajax link?
Does the new data show up in the listView and passwordField?

Could you build a quickstart for a deeper look?

Regards
Sven



On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:

They are member of a form and this has a CompoundPropertyModel.

setDefaultModel(new CompoundPropertyModel(new
UserModel()));

And this holds all data which are relevant for user. The other components of 
the form show the data of the user which I set as the default model.

Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Donnerstag, 12. Januar 2017 14:20
An: users@wicket.apache.org
Betreff: Re: Update ListMultipleChoice by Ajax

Hi,

your components probably hold a reference to the former model.

Where do 'groups' and 'password' get their model from?

Have fun
Sven


On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:

Hello,

I have a for

AW: AW: AW: AW: Update ListMultipleChoice by Ajax

2017-01-15 Thread Christoph.Manig
Can you explain what these methods equals() and hashCode() have to do?


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net] 
Gesendet: Freitag, 13. Januar 2017 13:41
An: users@wicket.apache.org
Betreff: Re: AW: AW: AW: Update ListMultipleChoice by Ajax

Ah, it didn't have anything to do with Ajax or models after all:

- PasswordTextField#setResetPassword(false) lets it render the password (you 
don't have a login form here, so it's safe)

- Group has to implement #equals() and #hashCode() *or* you have to use an id 
value other than index (which is ChoiceRenderer's default)

Have fun
Sven


On 13.01.2017 11:18, christoph.ma...@t-systems.com wrote:
> Ok I created an Account on GitHub. Here is the example: 
> https://github.com/CManig/WicketChoiceExample
>
>
> Mit freundlichen Grüßen
> Christoph Manig
>
>
> -Ursprüngliche Nachricht-
> Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
> Gesendet: Freitag, 13. Januar 2017 10:48
> An: users@wicket.apache.org
> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>
> you can use any publicaly available project hosting (your SVN, 
> bitbucket, github etc.) Or you can create JIRA issue and attach your 
> quickstart (I would use this option only if I know for sure it is JIRA 
> bug)
>
> On Fri, Jan 13, 2017 at 4:07 PM,  <christoph.ma...@t-systems.com> wrote:
>> I've only have a GitLab Account will this also work for you? Can you send me 
>> a link to the right place in Jira?
>>
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>>
>> -Ursprüngliche Nachricht-
>> Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
>> Gesendet: Freitag, 13. Januar 2017 10:05
>> An: users@wicket.apache.org
>> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>>
>> You can share github link
>> or attach it to JIRA :)
>>
>> On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:
>>> I created a small example. How can I send this to you?
>>>
>>>
>>> Mit freundlichen Grüßen
>>> Christoph Manig
>>> Systems Engineer
>>>
>>> T-Systems International GmbH
>>> Systems Integration - SC Travel, Transport & Logistics Annenstr. 5
>>> 01067 Dresden
>>> tel.:   +49 (0) 351 / 4744 - 188
>>> fax:+49 (0) 351 / 4744 - 209
>>> email:  christoph.ma...@t-systems.com
>>>
>>> T-SYSTEMS INTERNATIONAL GMBH
>>> Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
>>> Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri 
>>> Abolhassan, Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen 
>>> Rickmann
>>> Handelsregister: Amtsgericht Frankfurt am Main HRB 55933 Sitz der
>>> Gesellschaft: Frankfurt am Main WEEE-Reg.-Nr. DE50335567
>>>
>>>
>>> -Ursprüngliche Nachricht-
>>> Von: Sven Meier [mailto:s...@meiers.net]
>>> Gesendet: Freitag, 13. Januar 2017 08:16
>>> An: users@wicket.apache.org
>>> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>>>
>>> Hi Christoph,
>>>
>>> a https://wicket.apache.org/start/quickstart.html allows us to debug the 
>>> problem.
>>>
>>> You've probably got your model usage wrong, that will be hard to analyze 
>>> without seeing more code.
>>>
>>> Regards
>>> Sven
>>>
>>>
>>> On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:
>>>> After refreshing the page I see the same page. Its not a listView it is a 
>>>> ListMultipleChoice.
>>>>
>>>> What do you mean with a quickstart.
>>>>
>>>>
>>>> Mit freundlichen Grüßen
>>>> Christoph Manig
>>>>
>>>> -Ursprüngliche Nachricht-
>>>> Von: Sven Meier [mailto:s...@meiers.net]
>>>> Gesendet: Donnerstag, 12. Januar 2017 22:51
>>>> An: users@wicket.apache.org
>>>> Betreff: Re: AW: Update ListMultipleChoice by Ajax
>>>>
>>>> Hm, with CompoundPropertyModel all inherited models after dropped on 
>>>> detach and re-acquired on following access.
>>>>
>>>> So in theory that should work.
>>>>
>>>> What happens if you refresh the page (F5) after clicking the Ajax link?
>>>> Does the new data show up in the listView and passwordField?
>>>>
>>>> Could you build a quickstart for a deeper look?
>>>>
>>>> Regards
>>>> Sven
>>>>
>>>>
>>

Re: AW: AW: AW: Update ListMultipleChoice by Ajax

2017-01-13 Thread Sven Meier

Ah, it didn't have anything to do with Ajax or models after all:

- PasswordTextField#setResetPassword(false) lets it render the password 
(you don't have a login form here, so it's safe)


- Group has to implement #equals() and #hashCode() *or* you have to use 
an id value other than index (which is ChoiceRenderer's default)


Have fun
Sven


On 13.01.2017 11:18, christoph.ma...@t-systems.com wrote:

Ok I created an Account on GitHub. Here is the example: 
https://github.com/CManig/WicketChoiceExample


Mit freundlichen Grüßen
Christoph Manig


-Ursprüngliche Nachricht-
Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
Gesendet: Freitag, 13. Januar 2017 10:48
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

you can use any publicaly available project hosting (your SVN, bitbucket, 
github etc.) Or you can create JIRA issue and attach your quickstart (I would 
use this option only if I know for sure it is JIRA bug)

On Fri, Jan 13, 2017 at 4:07 PM,  <christoph.ma...@t-systems.com> wrote:

I've only have a GitLab Account will this also work for you? Can you send me a 
link to the right place in Jira?


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
Gesendet: Freitag, 13. Januar 2017 10:05
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

You can share github link
or attach it to JIRA :)

On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:

I created a small example. How can I send this to you?


Mit freundlichen Grüßen
Christoph Manig
Systems Engineer

T-Systems International GmbH
Systems Integration - SC Travel, Transport & Logistics Annenstr. 5
01067 Dresden
tel.:   +49 (0) 351 / 4744 - 188
fax:+49 (0) 351 / 4744 - 209
email:  christoph.ma...@t-systems.com

T-SYSTEMS INTERNATIONAL GMBH
Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri
Abolhassan, Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen
Rickmann
Handelsregister: Amtsgericht Frankfurt am Main HRB 55933 Sitz der
Gesellschaft: Frankfurt am Main WEEE-Reg.-Nr. DE50335567


-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Freitag, 13. Januar 2017 08:16
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

Hi Christoph,

a https://wicket.apache.org/start/quickstart.html allows us to debug the 
problem.

You've probably got your model usage wrong, that will be hard to analyze 
without seeing more code.

Regards
Sven


On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:

After refreshing the page I see the same page. Its not a listView it is a 
ListMultipleChoice.

What do you mean with a quickstart.


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Donnerstag, 12. Januar 2017 22:51
An: users@wicket.apache.org
Betreff: Re: AW: Update ListMultipleChoice by Ajax

Hm, with CompoundPropertyModel all inherited models after dropped on detach and 
re-acquired on following access.

So in theory that should work.

What happens if you refresh the page (F5) after clicking the Ajax link?
Does the new data show up in the listView and passwordField?

Could you build a quickstart for a deeper look?

Regards
Sven



On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:

They are member of a form and this has a CompoundPropertyModel.

setDefaultModel(new CompoundPropertyModel(new
UserModel()));

And this holds all data which are relevant for user. The other components of 
the form show the data of the user which I set as the default model.

Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Donnerstag, 12. Januar 2017 14:20
An: users@wicket.apache.org
Betreff: Re: Update ListMultipleChoice by Ajax

Hi,

your components probably hold a reference to the former model.

Where do 'groups' and 'password' get their model from?

Have fun
Sven


On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:

Hello,

I have a form which contains a ListMultipleChoice and a PasswordTextField.

ListMultipleChoice groups = new
ListMultipleChoice<>("groups", groupDao.getAllGroups(), new
ChoiceRenderer("groupname"));


PasswordTextField password = new
RequiredPasswordField("password");


After clicking an AjaxLink I set a user object to the default model of the 
form. Then the form will be rendered and I see all data of the user in the 
fields of the form.

But the ListMultipleChoice and the PasswordTextField are not updated. But the 
user object contains the data for the ListMultipleChoice and the 
PasswordTextField.
Can anyone help please.


Mit freundlichen Grüßen
Christoph Manig




---
-
- To unsu

AW: AW: AW: Update ListMultipleChoice by Ajax

2017-01-13 Thread Christoph.Manig
Ok I created an Account on GitHub. Here is the example: 
https://github.com/CManig/WicketChoiceExample


Mit freundlichen Grüßen
Christoph Manig


-Ursprüngliche Nachricht-
Von: Maxim Solodovnik [mailto:solomax...@gmail.com] 
Gesendet: Freitag, 13. Januar 2017 10:48
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

you can use any publicaly available project hosting (your SVN, bitbucket, 
github etc.) Or you can create JIRA issue and attach your quickstart (I would 
use this option only if I know for sure it is JIRA bug)

On Fri, Jan 13, 2017 at 4:07 PM,  <christoph.ma...@t-systems.com> wrote:
> I've only have a GitLab Account will this also work for you? Can you send me 
> a link to the right place in Jira?
>
>
> Mit freundlichen Grüßen
> Christoph Manig
>
> -Ursprüngliche Nachricht-
> Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
> Gesendet: Freitag, 13. Januar 2017 10:05
> An: users@wicket.apache.org
> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>
> You can share github link
> or attach it to JIRA :)
>
> On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:
>> I created a small example. How can I send this to you?
>>
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>> Systems Engineer
>>
>> T-Systems International GmbH
>> Systems Integration - SC Travel, Transport & Logistics Annenstr. 5
>> 01067 Dresden
>> tel.:   +49 (0) 351 / 4744 - 188
>> fax:+49 (0) 351 / 4744 - 209
>> email:  christoph.ma...@t-systems.com
>>
>> T-SYSTEMS INTERNATIONAL GMBH
>> Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
>> Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri 
>> Abolhassan, Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen 
>> Rickmann
>> Handelsregister: Amtsgericht Frankfurt am Main HRB 55933 Sitz der
>> Gesellschaft: Frankfurt am Main WEEE-Reg.-Nr. DE50335567
>>
>>
>> -Ursprüngliche Nachricht-
>> Von: Sven Meier [mailto:s...@meiers.net]
>> Gesendet: Freitag, 13. Januar 2017 08:16
>> An: users@wicket.apache.org
>> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>>
>> Hi Christoph,
>>
>> a https://wicket.apache.org/start/quickstart.html allows us to debug the 
>> problem.
>>
>> You've probably got your model usage wrong, that will be hard to analyze 
>> without seeing more code.
>>
>> Regards
>> Sven
>>
>>
>> On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:
>>> After refreshing the page I see the same page. Its not a listView it is a 
>>> ListMultipleChoice.
>>>
>>> What do you mean with a quickstart.
>>>
>>>
>>> Mit freundlichen Grüßen
>>> Christoph Manig
>>>
>>> -Ursprüngliche Nachricht-
>>> Von: Sven Meier [mailto:s...@meiers.net]
>>> Gesendet: Donnerstag, 12. Januar 2017 22:51
>>> An: users@wicket.apache.org
>>> Betreff: Re: AW: Update ListMultipleChoice by Ajax
>>>
>>> Hm, with CompoundPropertyModel all inherited models after dropped on detach 
>>> and re-acquired on following access.
>>>
>>> So in theory that should work.
>>>
>>> What happens if you refresh the page (F5) after clicking the Ajax link?
>>> Does the new data show up in the listView and passwordField?
>>>
>>> Could you build a quickstart for a deeper look?
>>>
>>> Regards
>>> Sven
>>>
>>>
>>>
>>> On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:
>>>> They are member of a form and this has a CompoundPropertyModel.
>>>>
>>>> setDefaultModel(new CompoundPropertyModel(new
>>>> UserModel()));
>>>>
>>>> And this holds all data which are relevant for user. The other components 
>>>> of the form show the data of the user which I set as the default model.
>>>>
>>>> Mit freundlichen Grüßen
>>>> Christoph Manig
>>>>
>>>> -Ursprüngliche Nachricht-
>>>> Von: Sven Meier [mailto:s...@meiers.net]
>>>> Gesendet: Donnerstag, 12. Januar 2017 14:20
>>>> An: users@wicket.apache.org
>>>> Betreff: Re: Update ListMultipleChoice by Ajax
>>>>
>>>> Hi,
>>>>
>>>> your components probably hold a reference to the former model.
>>>>
>>>> Where do 'groups' and 'password' get their model from?
>>>>
>>>> Have fun
>>>> Sven
&

Re: AW: AW: Update ListMultipleChoice by Ajax

2017-01-13 Thread Maxim Solodovnik
you can use any publicaly available project hosting (your SVN,
bitbucket, github etc.)
Or you can create JIRA issue and attach your quickstart (I would use
this option only if I know for sure it is JIRA bug)

On Fri, Jan 13, 2017 at 4:07 PM,  <christoph.ma...@t-systems.com> wrote:
> I've only have a GitLab Account will this also work for you? Can you send me 
> a link to the right place in Jira?
>
>
> Mit freundlichen Grüßen
> Christoph Manig
>
> -Ursprüngliche Nachricht-
> Von: Maxim Solodovnik [mailto:solomax...@gmail.com]
> Gesendet: Freitag, 13. Januar 2017 10:05
> An: users@wicket.apache.org
> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>
> You can share github link
> or attach it to JIRA :)
>
> On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:
>> I created a small example. How can I send this to you?
>>
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>> Systems Engineer
>>
>> T-Systems International GmbH
>> Systems Integration - SC Travel, Transport & Logistics Annenstr. 5
>> 01067 Dresden
>> tel.:   +49 (0) 351 / 4744 - 188
>> fax:+49 (0) 351 / 4744 - 209
>> email:  christoph.ma...@t-systems.com
>>
>> T-SYSTEMS INTERNATIONAL GMBH
>> Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
>> Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri
>> Abolhassan, Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen
>> Rickmann
>> Handelsregister: Amtsgericht Frankfurt am Main HRB 55933 Sitz der
>> Gesellschaft: Frankfurt am Main WEEE-Reg.-Nr. DE50335567
>>
>>
>> -Ursprüngliche Nachricht-
>> Von: Sven Meier [mailto:s...@meiers.net]
>> Gesendet: Freitag, 13. Januar 2017 08:16
>> An: users@wicket.apache.org
>> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>>
>> Hi Christoph,
>>
>> a https://wicket.apache.org/start/quickstart.html allows us to debug the 
>> problem.
>>
>> You've probably got your model usage wrong, that will be hard to analyze 
>> without seeing more code.
>>
>> Regards
>> Sven
>>
>>
>> On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:
>>> After refreshing the page I see the same page. Its not a listView it is a 
>>> ListMultipleChoice.
>>>
>>> What do you mean with a quickstart.
>>>
>>>
>>> Mit freundlichen Grüßen
>>> Christoph Manig
>>>
>>> -Ursprüngliche Nachricht-
>>> Von: Sven Meier [mailto:s...@meiers.net]
>>> Gesendet: Donnerstag, 12. Januar 2017 22:51
>>> An: users@wicket.apache.org
>>> Betreff: Re: AW: Update ListMultipleChoice by Ajax
>>>
>>> Hm, with CompoundPropertyModel all inherited models after dropped on detach 
>>> and re-acquired on following access.
>>>
>>> So in theory that should work.
>>>
>>> What happens if you refresh the page (F5) after clicking the Ajax link?
>>> Does the new data show up in the listView and passwordField?
>>>
>>> Could you build a quickstart for a deeper look?
>>>
>>> Regards
>>> Sven
>>>
>>>
>>>
>>> On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:
>>>> They are member of a form and this has a CompoundPropertyModel.
>>>>
>>>> setDefaultModel(new CompoundPropertyModel(new
>>>> UserModel()));
>>>>
>>>> And this holds all data which are relevant for user. The other components 
>>>> of the form show the data of the user which I set as the default model.
>>>>
>>>> Mit freundlichen Grüßen
>>>> Christoph Manig
>>>>
>>>> -Ursprüngliche Nachricht-
>>>> Von: Sven Meier [mailto:s...@meiers.net]
>>>> Gesendet: Donnerstag, 12. Januar 2017 14:20
>>>> An: users@wicket.apache.org
>>>> Betreff: Re: Update ListMultipleChoice by Ajax
>>>>
>>>> Hi,
>>>>
>>>> your components probably hold a reference to the former model.
>>>>
>>>> Where do 'groups' and 'password' get their model from?
>>>>
>>>> Have fun
>>>> Sven
>>>>
>>>>
>>>> On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:
>>>>> Hello,
>>>>>
>>>>> I have a form which contains a ListMultipleChoice and a PasswordTextField.
>>>>>
>>>>> ListMultipleChoice groups = new
>>>>> ListMultipleChoice&l

AW: AW: AW: Update ListMultipleChoice by Ajax

2017-01-13 Thread Christoph.Manig
I've only have a GitLab Account will this also work for you? Can you send me a 
link to the right place in Jira?


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Maxim Solodovnik [mailto:solomax...@gmail.com] 
Gesendet: Freitag, 13. Januar 2017 10:05
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

You can share github link
or attach it to JIRA :)

On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:
> I created a small example. How can I send this to you?
>
>
> Mit freundlichen Grüßen
> Christoph Manig
> Systems Engineer
>
> T-Systems International GmbH
> Systems Integration - SC Travel, Transport & Logistics Annenstr. 5
> 01067 Dresden
> tel.:   +49 (0) 351 / 4744 - 188
> fax:+49 (0) 351 / 4744 - 209
> email:  christoph.ma...@t-systems.com
>
> T-SYSTEMS INTERNATIONAL GMBH
> Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
> Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri 
> Abolhassan, Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen 
> Rickmann
> Handelsregister: Amtsgericht Frankfurt am Main HRB 55933 Sitz der 
> Gesellschaft: Frankfurt am Main WEEE-Reg.-Nr. DE50335567
>
>
> -Ursprüngliche Nachricht-
> Von: Sven Meier [mailto:s...@meiers.net]
> Gesendet: Freitag, 13. Januar 2017 08:16
> An: users@wicket.apache.org
> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>
> Hi Christoph,
>
> a https://wicket.apache.org/start/quickstart.html allows us to debug the 
> problem.
>
> You've probably got your model usage wrong, that will be hard to analyze 
> without seeing more code.
>
> Regards
> Sven
>
>
> On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:
>> After refreshing the page I see the same page. Its not a listView it is a 
>> ListMultipleChoice.
>>
>> What do you mean with a quickstart.
>>
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>>
>> -Ursprüngliche Nachricht-
>> Von: Sven Meier [mailto:s...@meiers.net]
>> Gesendet: Donnerstag, 12. Januar 2017 22:51
>> An: users@wicket.apache.org
>> Betreff: Re: AW: Update ListMultipleChoice by Ajax
>>
>> Hm, with CompoundPropertyModel all inherited models after dropped on detach 
>> and re-acquired on following access.
>>
>> So in theory that should work.
>>
>> What happens if you refresh the page (F5) after clicking the Ajax link?
>> Does the new data show up in the listView and passwordField?
>>
>> Could you build a quickstart for a deeper look?
>>
>> Regards
>> Sven
>>
>>
>>
>> On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:
>>> They are member of a form and this has a CompoundPropertyModel.
>>>
>>> setDefaultModel(new CompoundPropertyModel(new
>>> UserModel()));
>>>
>>> And this holds all data which are relevant for user. The other components 
>>> of the form show the data of the user which I set as the default model.
>>>
>>> Mit freundlichen Grüßen
>>> Christoph Manig
>>>
>>> -Ursprüngliche Nachricht-
>>> Von: Sven Meier [mailto:s...@meiers.net]
>>> Gesendet: Donnerstag, 12. Januar 2017 14:20
>>> An: users@wicket.apache.org
>>> Betreff: Re: Update ListMultipleChoice by Ajax
>>>
>>> Hi,
>>>
>>> your components probably hold a reference to the former model.
>>>
>>> Where do 'groups' and 'password' get their model from?
>>>
>>> Have fun
>>> Sven
>>>
>>>
>>> On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:
>>>> Hello,
>>>>
>>>> I have a form which contains a ListMultipleChoice and a PasswordTextField.
>>>>
>>>> ListMultipleChoice groups = new 
>>>> ListMultipleChoice<>("groups", groupDao.getAllGroups(), new 
>>>> ChoiceRenderer("groupname"));
>>>> 
>>>>
>>>> PasswordTextField password = new RequiredPasswordField("password");
>>>> 
>>>>
>>>> After clicking an AjaxLink I set a user object to the default model of the 
>>>> form. Then the form will be rendered and I see all data of the user in the 
>>>> fields of the form.
>>>>
>>>> But the ListMultipleChoice and the PasswordTextField are not updated. But 
>>>> the user object contains the data for the ListMultipleChoice and the 
>>>> PasswordTextField.
>>>> Can anyone help please.
>>>>
>>>>

Re: AW: AW: Update ListMultipleChoice by Ajax

2017-01-13 Thread Maxim Solodovnik
You can share github link
or attach it to JIRA :)

On Fri, Jan 13, 2017 at 4:02 PM,  <christoph.ma...@t-systems.com> wrote:
> I created a small example. How can I send this to you?
>
>
> Mit freundlichen Grüßen
> Christoph Manig
> Systems Engineer
>
> T-Systems International GmbH
> Systems Integration - SC Travel, Transport & Logistics
> Annenstr. 5
> 01067 Dresden
> tel.:   +49 (0) 351 / 4744 - 188
> fax:+49 (0) 351 / 4744 - 209
> email:  christoph.ma...@t-systems.com
>
> T-SYSTEMS INTERNATIONAL GMBH
> Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
> Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri Abolhassan, 
> Thilo Kusch, Dr. Markus Müller, Georg Pepping, Hagen Rickmann
> Handelsregister: Amtsgericht Frankfurt am Main HRB 55933
> Sitz der Gesellschaft: Frankfurt am Main
> WEEE-Reg.-Nr. DE50335567
>
>
> -Ursprüngliche Nachricht-
> Von: Sven Meier [mailto:s...@meiers.net]
> Gesendet: Freitag, 13. Januar 2017 08:16
> An: users@wicket.apache.org
> Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax
>
> Hi Christoph,
>
> a https://wicket.apache.org/start/quickstart.html allows us to debug the 
> problem.
>
> You've probably got your model usage wrong, that will be hard to analyze 
> without seeing more code.
>
> Regards
> Sven
>
>
> On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:
>> After refreshing the page I see the same page. Its not a listView it is a 
>> ListMultipleChoice.
>>
>> What do you mean with a quickstart.
>>
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>>
>> -----Ursprüngliche Nachricht-
>> Von: Sven Meier [mailto:s...@meiers.net]
>> Gesendet: Donnerstag, 12. Januar 2017 22:51
>> An: users@wicket.apache.org
>> Betreff: Re: AW: Update ListMultipleChoice by Ajax
>>
>> Hm, with CompoundPropertyModel all inherited models after dropped on detach 
>> and re-acquired on following access.
>>
>> So in theory that should work.
>>
>> What happens if you refresh the page (F5) after clicking the Ajax link?
>> Does the new data show up in the listView and passwordField?
>>
>> Could you build a quickstart for a deeper look?
>>
>> Regards
>> Sven
>>
>>
>>
>> On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:
>>> They are member of a form and this has a CompoundPropertyModel.
>>>
>>> setDefaultModel(new CompoundPropertyModel(new
>>> UserModel()));
>>>
>>> And this holds all data which are relevant for user. The other components 
>>> of the form show the data of the user which I set as the default model.
>>>
>>> Mit freundlichen Grüßen
>>> Christoph Manig
>>>
>>> -Ursprüngliche Nachricht-
>>> Von: Sven Meier [mailto:s...@meiers.net]
>>> Gesendet: Donnerstag, 12. Januar 2017 14:20
>>> An: users@wicket.apache.org
>>> Betreff: Re: Update ListMultipleChoice by Ajax
>>>
>>> Hi,
>>>
>>> your components probably hold a reference to the former model.
>>>
>>> Where do 'groups' and 'password' get their model from?
>>>
>>> Have fun
>>> Sven
>>>
>>>
>>> On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:
>>>> Hello,
>>>>
>>>> I have a form which contains a ListMultipleChoice and a PasswordTextField.
>>>>
>>>> ListMultipleChoice groups = new
>>>> ListMultipleChoice<>("groups", groupDao.getAllGroups(), new
>>>> ChoiceRenderer("groupname"));
>>>> 
>>>>
>>>> PasswordTextField password = new RequiredPasswordField("password");
>>>> 
>>>>
>>>> After clicking an AjaxLink I set a user object to the default model of the 
>>>> form. Then the form will be rendered and I see all data of the user in the 
>>>> fields of the form.
>>>>
>>>> But the ListMultipleChoice and the PasswordTextField are not updated. But 
>>>> the user object contains the data for the ListMultipleChoice and the 
>>>> PasswordTextField.
>>>> Can anyone help please.
>>>>
>>>>
>>>> Mit freundlichen Grüßen
>>>> Christoph Manig
>>>>
>>>>
>>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>&

AW: AW: AW: Update ListMultipleChoice by Ajax

2017-01-13 Thread Christoph.Manig
I created a small example. How can I send this to you?


Mit freundlichen Grüßen
Christoph Manig
Systems Engineer

T-Systems International GmbH
Systems Integration - SC Travel, Transport & Logistics
Annenstr. 5
01067 Dresden 
tel.:   +49 (0) 351 / 4744 - 188
fax:+49 (0) 351 / 4744 - 209
email:  christoph.ma...@t-systems.com

T-SYSTEMS INTERNATIONAL GMBH
Aufsichtsrat: Thomas Dannenfeldt (Vorsitzender)
Geschäftsführung: Reinhard Clemens (Vorsitzender), Dr. Ferri Abolhassan, Thilo 
Kusch, Dr. Markus Müller, Georg Pepping, Hagen Rickmann
Handelsregister: Amtsgericht Frankfurt am Main HRB 55933
Sitz der Gesellschaft: Frankfurt am Main
WEEE-Reg.-Nr. DE50335567


-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net] 
Gesendet: Freitag, 13. Januar 2017 08:16
An: users@wicket.apache.org
Betreff: Re: AW: AW: Update ListMultipleChoice by Ajax

Hi Christoph,

a https://wicket.apache.org/start/quickstart.html allows us to debug the 
problem.

You've probably got your model usage wrong, that will be hard to analyze 
without seeing more code.

Regards
Sven


On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:
> After refreshing the page I see the same page. Its not a listView it is a 
> ListMultipleChoice.
>
> What do you mean with a quickstart.
>
>
> Mit freundlichen Grüßen
> Christoph Manig
>
> -Ursprüngliche Nachricht-
> Von: Sven Meier [mailto:s...@meiers.net]
> Gesendet: Donnerstag, 12. Januar 2017 22:51
> An: users@wicket.apache.org
> Betreff: Re: AW: Update ListMultipleChoice by Ajax
>
> Hm, with CompoundPropertyModel all inherited models after dropped on detach 
> and re-acquired on following access.
>
> So in theory that should work.
>
> What happens if you refresh the page (F5) after clicking the Ajax link?
> Does the new data show up in the listView and passwordField?
>
> Could you build a quickstart for a deeper look?
>
> Regards
> Sven
>
>
>
> On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:
>> They are member of a form and this has a CompoundPropertyModel.
>>
>> setDefaultModel(new CompoundPropertyModel(new
>> UserModel()));
>>
>> And this holds all data which are relevant for user. The other components of 
>> the form show the data of the user which I set as the default model.
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>>
>> -Ursprüngliche Nachricht-
>> Von: Sven Meier [mailto:s...@meiers.net]
>> Gesendet: Donnerstag, 12. Januar 2017 14:20
>> An: users@wicket.apache.org
>> Betreff: Re: Update ListMultipleChoice by Ajax
>>
>> Hi,
>>
>> your components probably hold a reference to the former model.
>>
>> Where do 'groups' and 'password' get their model from?
>>
>> Have fun
>> Sven
>>
>>
>> On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:
>>> Hello,
>>>
>>> I have a form which contains a ListMultipleChoice and a PasswordTextField.
>>>
>>> ListMultipleChoice groups = new 
>>> ListMultipleChoice<>("groups", groupDao.getAllGroups(), new 
>>> ChoiceRenderer("groupname"));
>>> 
>>>
>>> PasswordTextField password = new RequiredPasswordField("password");
>>> 
>>>
>>> After clicking an AjaxLink I set a user object to the default model of the 
>>> form. Then the form will be rendered and I see all data of the user in the 
>>> fields of the form.
>>>
>>> But the ListMultipleChoice and the PasswordTextField are not updated. But 
>>> the user object contains the data for the ListMultipleChoice and the 
>>> PasswordTextField.
>>> Can anyone help please.
>>>
>>>
>>> Mit freundlichen Grüßen
>>> Christoph Manig
>>>
>>>
>>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>


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


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



Re: AW: AW: Update ListMultipleChoice by Ajax

2017-01-12 Thread Sven Meier

Hi Christoph,

a https://wicket.apache.org/start/quickstart.html allows us to debug the 
problem.


You've probably got your model usage wrong, that will be hard to analyze 
without seeing more code.


Regards
Sven


On 13.01.2017 08:08, christoph.ma...@t-systems.com wrote:

After refreshing the page I see the same page. Its not a listView it is a 
ListMultipleChoice.

What do you mean with a quickstart.


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Donnerstag, 12. Januar 2017 22:51
An: users@wicket.apache.org
Betreff: Re: AW: Update ListMultipleChoice by Ajax

Hm, with CompoundPropertyModel all inherited models after dropped on detach and 
re-acquired on following access.

So in theory that should work.

What happens if you refresh the page (F5) after clicking the Ajax link?
Does the new data show up in the listView and passwordField?

Could you build a quickstart for a deeper look?

Regards
Sven



On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:

They are member of a form and this has a CompoundPropertyModel.

setDefaultModel(new CompoundPropertyModel(new
UserModel()));

And this holds all data which are relevant for user. The other components of 
the form show the data of the user which I set as the default model.

Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net]
Gesendet: Donnerstag, 12. Januar 2017 14:20
An: users@wicket.apache.org
Betreff: Re: Update ListMultipleChoice by Ajax

Hi,

your components probably hold a reference to the former model.

Where do 'groups' and 'password' get their model from?

Have fun
Sven


On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:

Hello,

I have a form which contains a ListMultipleChoice and a PasswordTextField.

ListMultipleChoice groups = new ListMultipleChoice<>("groups",
groupDao.getAllGroups(), new ChoiceRenderer("groupname"));


PasswordTextField password = new RequiredPasswordField("password");


After clicking an AjaxLink I set a user object to the default model of the 
form. Then the form will be rendered and I see all data of the user in the 
fields of the form.

But the ListMultipleChoice and the PasswordTextField are not updated. But the 
user object contains the data for the ListMultipleChoice and the 
PasswordTextField.
Can anyone help please.


Mit freundlichen Grüßen
Christoph Manig




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


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



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


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




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



AW: AW: Update ListMultipleChoice by Ajax

2017-01-12 Thread Christoph.Manig
After refreshing the page I see the same page. Its not a listView it is a 
ListMultipleChoice. 

What do you mean with a quickstart.


Mit freundlichen Grüßen
Christoph Manig

-Ursprüngliche Nachricht-
Von: Sven Meier [mailto:s...@meiers.net] 
Gesendet: Donnerstag, 12. Januar 2017 22:51
An: users@wicket.apache.org
Betreff: Re: AW: Update ListMultipleChoice by Ajax

Hm, with CompoundPropertyModel all inherited models after dropped on detach and 
re-acquired on following access.

So in theory that should work.

What happens if you refresh the page (F5) after clicking the Ajax link? 
Does the new data show up in the listView and passwordField?

Could you build a quickstart for a deeper look?

Regards
Sven



On 12.01.2017 15:35, christoph.ma...@t-systems.com wrote:
> They are member of a form and this has a CompoundPropertyModel.
>
> setDefaultModel(new CompoundPropertyModel(new 
> UserModel()));
>
> And this holds all data which are relevant for user. The other components of 
> the form show the data of the user which I set as the default model.
>
> Mit freundlichen Grüßen
> Christoph Manig
>
> -Ursprüngliche Nachricht-
> Von: Sven Meier [mailto:s...@meiers.net]
> Gesendet: Donnerstag, 12. Januar 2017 14:20
> An: users@wicket.apache.org
> Betreff: Re: Update ListMultipleChoice by Ajax
>
> Hi,
>
> your components probably hold a reference to the former model.
>
> Where do 'groups' and 'password' get their model from?
>
> Have fun
> Sven
>
>
> On 12.01.2017 12:37, christoph.ma...@t-systems.com wrote:
>> Hello,
>>
>> I have a form which contains a ListMultipleChoice and a PasswordTextField.
>>
>> ListMultipleChoice groups = new ListMultipleChoice<>("groups", 
>> groupDao.getAllGroups(), new ChoiceRenderer("groupname"));
>> 
>>
>> PasswordTextField password = new RequiredPasswordField("password");
>> 
>>
>> After clicking an AjaxLink I set a user object to the default model of the 
>> form. Then the form will be rendered and I see all data of the user in the 
>> fields of the form.
>>
>> But the ListMultipleChoice and the PasswordTextField are not updated. But 
>> the user object contains the data for the ListMultipleChoice and the 
>> PasswordTextField.
>> Can anyone help please.
>>
>>
>> Mit freundlichen Grüßen
>> Christoph Manig
>>
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>


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


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