Re: Form in modal using Internet Explorer 8

2011-06-07 Thread Matthew Goodson
. It only happened when using ie 8 older. It turns out that when I use an input tag of a different type then the problem stopped. Thanks On Tue, Jun 7, 2011 at 4:41 PM, Matthew Goodson matt...@spidertracks.comwrote: Hi guys, I have a jquery modal which contains a form which has an ajax button

Form in modal using Internet Explorer 8

2011-06-06 Thread Matthew Goodson
happen with ie9, firefox or chrome. For these browsers I just get the one ajax callback for the button which is what I would expect. Does anyone know what would cause the form submit to fire on ie8? Thanks for your help. Matthew Goodson

Re: WELCOME to users@wicket.apache.org

2011-04-28 Thread Matthew Goodson
is there to prevent caching of the Ajax response. AFAIK clicking on a tab will reload its content each time. I.e. Wicket doesn't think that the tab is already loaded. On Thu, Apr 28, 2011 at 12:41 AM, Matthew Goodson matt...@spidertracks.com wrote: Yeah I'm not feeling too hopeful I have

Re: WELCOME to users@wicket.apache.org

2011-04-28 Thread Matthew Goodson
I finally managed to figure out a workaround for this so it's all workin now. Thanks for your help! On Fri, Apr 29, 2011 at 8:49 AM, Matthew Goodson matt...@spidertracks.comwrote: Yeah on the javascript side it will fire off a request to the server to reload the tab each time. But wicket

Re: WELCOME to users@wicket.apache.org

2011-04-28 Thread Matthew Goodson
people who find this thread. On Thu, Apr 28, 2011 at 5:41 PM, Matthew Goodson matt...@spidertracks.comwrote: I finally managed to figure out a workaround for this so it's all workin now. Thanks for your help! On Fri, Apr 29, 2011 at 8:49 AM, Matthew Goodson matt

Re: WELCOME to users@wicket.apache.org

2011-04-27 Thread Matthew Goodson
ideas? On Wed, Apr 27, 2011 at 7:22 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, I'm not sure whether this is possible at all. Why do you need to do this ? On Wed, Apr 27, 2011 at 8:12 AM, Matthew Goodson matt...@spidertracks.com wrote: Hi guys, I'm trying to find out if an ajax

Re: WELCOME to users@wicket.apache.org

2011-04-26 Thread Matthew Goodson
Hi guys, I'm trying to find out if an ajax request has come from page that was loaded from the browsers cache. Does anyone have any ideas of how I could achieve this? Thanks

Re: Dynamically loading image

2010-12-01 Thread Matthew Goodson
Thanks for the help guys. I've got it all working correctly now. For other people's future reference. I think this is the page that Igor was referring to which I pretty much copied : https://cwiki.apache.org/WICKET/uploaddownload.html I am retrieving the images from a db as a byte array //heres

Dynamically loading image

2010-11-29 Thread Matthew Goodson
Hi all, I'm needing to generate the url to an image dynamically on the client. i.e. I want to be able to chuck a generated url (e.g localhost:8080/images?imageId=blah) into the src of an img which would then go off and hit a wicket page which returns the binary data for the image. I'm not really

spring bean null during ajax call back

2010-11-14 Thread Matthew Goodson
Hi guys/girls, I'm having a bit of a problem accessing a spring bean from a call back. Before I render the page I can access the spring bean 'userService' just fine but during a callback when I go to access it it's null for some reason. Here's a simplified version of my code. Anyone got any

Bookmarking, getting the url hash value

2010-09-28 Thread Matthew Goodson
Hi, I've seen this topic mention a little bit around the place but I haven't seen any implementation of it so far. I'm looking into adding the ability to bookmark changes done by ajax in wicket. I'm planning on using the BBQ Jquery plugin and integration it with wicket. The hardest step is

Wicket javascript callback get variable

2010-09-26 Thread Matthew Goodson
Hi guys, I'm trying to call wicket from javascript. I have figured out how to do this but its not quite behaving as I expect. On the code below I would expect the success handler (alert('first')) to be fired before the alert('second') but this doesn't prove to be the case.