RE: AjaxFallbackDefaultDataTable and delete via ModalWindow

2010-01-30 Thread Andreas Lüdtke
Riyad, it's not a dumb question. I asked that already myself and checked via the debugger that the object is really deleted. But you've put me on the right track: I placed a link where I do a AjaxFallbackDefaultDataTable.modelChanged(); and that did the job. Now I've added an

Re: nested forms onSubmit

2010-01-30 Thread Dave Kallstrom
Nested forms in wicket component hierarachy. Not in html. You can nest forms in wicket which are replaced when the page is rendered and swapped out for divs. http://cwiki.apache.org/WICKET/nested-forms.html On Fri, Jan 29, 2010 at 5:38 PM, Riyad Kalla rka...@gmail.com wrote: Are nested forms a

Pax wicket osgi (on equinox)

2010-01-30 Thread Jan Juno
OK so I downloaded eclipse galileo classic 3.5.1 than Pax Wicket Department store from https://scm.ops4j.org/repos/ops4j/projects/pax/wicket I am following this manual from google cache http://www.ops4j.org/projects/pax/wicket/getting-started/installation.html but didn't have any luck after

help with OSGi

2010-01-30 Thread Jan Juno
OK so I downloaded eclipse galileo classic 3.5.1 than Pax Wicket Department store from https://scm.ops4j.org/repos/ops4j/projects/pax/wicket I am following this manual from google cache http://www.ops4j.org/projects/pax/wicket/getting-started/installation.html but didn't have any luck after

Re: Stateless AJAX links

2010-01-30 Thread Apple Grew
Joachim. Thanks a lot got your contribution. Regards, Apple Grew my blog @ http://blog.applegrew.com/ On Sat, Jan 30, 2010 at 3:43 AM, Joachim Kainz j...@jolira.com wrote: I have created a wiki page with my solution for stateless Ajax at

Image auto-resize in browser

2010-01-30 Thread Matt Zemeck
The images rendered by my page don't auto-resize (very large image) in the browser.  I have the setting enabled in IE and if I manually go to the generated src value url they do auto-resize.  The generated img tags looks fine.  Any ideas?

Re: Image auto-resize in browser

2010-01-30 Thread Andrew Lombardi
Can you be a little more specific? Are you resizing using a resource? What does your img tag look like in HTML? On Jan 30, 2010, at 4:27 PM, Matt Zemeck wrote: The images rendered by my page don't auto-resize (very large image) in the browser. I have the setting enabled in IE and if I

Re: Image auto-resize in browser

2010-01-30 Thread Matt Zemeck
There is a feature of IE that resizes large images automatically. When you hover over the image you can click to expand it to actual size.  This feature is not working for my images.   imgsrc=filename.jpg alt=Some Text height=3000 width=2000/ From: Andrew

Re: Image auto-resize in browser

2010-01-30 Thread Andrew Lombardi
Is wicket somehow inhibiting this functionality? I would think it's not the best user experience to force a user to download something larger than the viewing image. Is this being served through wicket filter inside the webapp? Sent from my iPhone On Jan 30, 2010, at 6:15 PM, Matt

Re: Image auto-resize in browser

2010-01-30 Thread Matt Zemeck
Wicket Servlet.  Its a big image but in the end thats what the use case calls for. From: Andrew Lombardi and...@mysticcoders.com To: users@wicket.apache.org users@wicket.apache.org Cc: users@wicket.apache.org users@wicket.apache.org Sent: Sat, January 30, 2010

Re: Image auto-resize in browser

2010-01-30 Thread Andrew Lombardi
try it with the filter, it could be that because it's passing through the servlet Wicket is modifying something on the other end. The filter should leave it alone On Jan 30, 2010, at 7:08 PM, Matt Zemeck wrote: Wicket Servlet. Its a big image but in the end thats what the use case calls

Re: Image auto-resize in browser

2010-01-30 Thread Steve Swinsburg
The autoresize can be turned off in IE so a longer term solution might be to add some onHover/onClick handlers to do what you require, rather than making the resize behaviour IE specific. http://www.microsoft.com/windows/ie/ie6/using/howto/customizing/autoresize.mspx cheers, Steve On

Re: Image auto-resize in browser

2010-01-30 Thread Matt Zemeck
Tried the filter, doesn't change From: Andrew Lombardi and...@mysticcoders.com To: users@wicket.apache.org Sent: Sat, January 30, 2010 10:12:09 PM Subject: Re: Image auto-resize in browser try it with the filter, it could be that because it's passing through