i am a little hesitant about doing it, but not opposed. what do others
think?

imho the proper way to do this would be to wrap the textfield+datepicker in
a webmarkupcontainer and add that to the target

-igor


On 1/11/07, Andrés Ferrari <[EMAIL PROTECTED]> wrote:

Hi everyone!

I have the following problem: I'm using Ajax to enable a Date field +
DatePicker combo, depending on a third field, and it is important to me
that
during the updating behavior the components get processed in the right
order.
Example:

someField.add(new AjaxFormComponentUpdatingBehavior("onblur") {
protected void onUpdate(AjaxRequestTarget target) {

target.addComponent(aDateField);
target.addComponent(aDatePicker);

}
});

I need aDateField to be processed *before* aDatePicker.

However, because AjaxRequestTarget uses a HashMap internally, this cannot
be
guaranteed, and as a result the DatePicker doesn't work (it works if by
coincidence the elements are retrieved from the map in the right order).

Can AjaxRequestTarget be changed so that it uses a LinkedHashMap, which
guarantees items will be retrieved in the same order they were added? Or
am I
entirely on the wrong track here? Is there another way to get a
predictable
behavior?

Thanks for your help!
--Andrés

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to