[Wicket-user] How to refresh a wicket.markup.html.panel.Panel

2007-05-31 Thread wicket0123
I have a web page that adds the panel as a component. On the same page, I've three ajax links. The goal is to clic on the links will add different components to the panel then refresh the panel on the page. It seems that I cannot do that. Here's my code: public class MyWegPage extends WebPa

Re: [Wicket-user] How to update AjaxTabbedPanel tab with new data

2007-05-22 Thread wicket0123
Panel getPanel() { return new PanelX(); }}); PanelX() will be called, On PanelX(), I add the components and query my service layer which gets call too. igor.vaynberg wrote: > > On 5/22/07, wicket0123 <[EMAIL PROTECTED]> wrote: >> >> >> We are using AjaxTabbedPanel to di

[Wicket-user] How to update AjaxTabbedPanel tab with new data

2007-05-22 Thread wicket0123
We are using AjaxTabbedPanel to display data. We don't want to pre-load all the data at star up. We want to load the tab's content when user clicks on the tab. So, we decided to use AjaxTabbedPanel. We are using AbstractTab. Each tab represents a category, so we hold the category id on the tab

Re: [Wicket-user] how to get a form's field when i click on an ajax object

2007-05-02 Thread wicket0123
ote: > > you most likely did not give the formcomponent a model. > > paste the relevant code > > -igor > > > On 4/28/07, wicket0123 <[EMAIL PROTECTED]> wrote: >> >> >> >> when i use getformcomponent.getmodleobject inside the onupdate, it throws

Re: [Wicket-user] how to get a form's field when i click on an ajax object

2007-04-28 Thread wicket0123
onupdate() > > -igor > > > On 4/27/07, wicket0123 <[EMAIL PROTECTED]> wrote: >> >> >> I want to use ajax to check if a field value is valid w/o submitting the >> entire form. I add AjaxFormComponentUpdatingBehavior to my ajax object >> (link/b

[Wicket-user] how to get a form's field when i click on an ajax object

2007-04-27 Thread wicket0123
I want to use ajax to check if a field value is valid w/o submitting the entire form. I add AjaxFormComponentUpdatingBehavior to my ajax object (link/button/etc). But, I don't know how to retrieve the edit field's value inside the onUpdate method. See the code I have: fc = new

Re: [Wicket-user] How to include a form field in the ajax request without form submit

2007-04-27 Thread wicket0123
Wasn't the initial question to get a form field's value w/o submitting the entire form? The goal was to get 1 field's value w/o submitting the entire form. ckuehne wrote: > > 2007/1/31, Marc-Andre Houle <[EMAIL PROTECTED]>: >> >> Why not simply use AjaxSubmitLink or AjaxSubmitButton ? It will