Hi everyone,
I have a ListView that displays a list of cars (say).
I have a small form on the page whereby they can add a new car using a
AjaxFallbackButton.
I can enter a new car and it updates the ListView
However I want to highlight the newly added item, and I just can't seemt to
figure out how I can 'target' the item.
I'd like to do something like
protected void onSubmit(AjaxRequestTarget target, Form arg1) {
// add new car...
if (target!=null) {
target.addComponent(carList);
target.addCompoent(<THENEWITEM>.addJavascript(new
Effect.Highlight(this).toJavascript()));
}
- the question is how do I get the target reference to the new item added?