Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-15 Thread Johan Compagner
is maybe in IE the onChange method not called? Can you debug that what happens for example if you click somewhere in the browser so that the focus get lost from the dropdown? Where is the onChange code attached to?? Is it attached to the right tag? johan On 6/15/07, Javed <[EMAIL PROTECTED]> w

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-15 Thread Javed
Your doubt is valid but dropdown is inside form. If this was the case then it wouldnt have worked in Firefox. Frank Bille wrote: > > Sounds weird. Could it be something with the dropdown isn't inside a > ? > > > Frank > > > On 6/14/07, Javed <[EMAIL PROTECTED]> wrote: >> >> >> >> Thanks for

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-14 Thread Frank Bille
Sounds weird. Could it be something with the dropdown isn't inside a ? Frank On 6/14/07, Javed <[EMAIL PROTECTED]> wrote: Thanks for Reply. Sorry, I didnt understand term "Ajax debug" What I did or rather saw is, In FireFox when I make selection in drop down the image changes. if I see the

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-13 Thread Javed
Thanks for Reply. Sorry, I didnt understand term "Ajax debug" What I did or rather saw is, In FireFox when I make selection in drop down the image changes. if I see the properties of this image then it shows correct name of that image. But in case of IE, I am not getting image name. I found one m

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-13 Thread Johan Compagner
what do you see in the ajax debug when you get the results? are you really seeing a different url in the src? On 6/12/07, Javed <[EMAIL PROTECTED]> wrote: > > Follwing code snippet adds dropdown. > > private DropDownChoice getDropDown1(final Label image){ > DropDownChoice dropDown1 = new DropDown

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-12 Thread Javed
Follwing code snippet adds dropdown. private DropDownChoice getDropDown1(final Label image){ DropDownChoice dropDown1 = new DropDownChoice("selectUser",new PropertyModel(model,"user1"),Arrays.asList(options),choiceRenderer); favsDropDown.add(new AjaxFormComponentUpdatingBehavior("onchan

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-11 Thread Frank Bille
Hi I haven't got experience with that error. Can you please post the code that is not working? Frank On 6/11/07, Javed <[EMAIL PROTECTED]> wrote: I need to change image according the selection made in dropdown. It is working fine Firefox but not in IE I tried it with "onchange" and "onclic

[Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-11 Thread Javed
I need to change image according the selection made in dropdown. It is working fine Firefox but not in IE I tried it with "onchange" and "onclick". It worked in Firefox but some how it is not working IE. Is there anything I am missing? Is there any other approach to achieve the same functionalit