> <wicket:panel><span wicket:id="label">[[label]]</span><input type="text"
> wicket:id="editor"/></wicket:panel>

I believe it refreshes the entire panel, not just the components
inside the panel.

See for example AjaxEditableLable.onSubmit():

        protected void onSubmit(AjaxRequestTarget target)
        {
                label.setVisible(true);
                editor.setVisible(false);
                target.addComponent(AjaxEditableLabel.this);

                target.appendJavascript("window.status='';");
        }

Charlie.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to