Re: Confusion with placeholder tags

2008-12-27 Thread David Ojeda
Thanks Martijn, I had a mixup between those methods. On Sat, Dec 27, 2008 at 10:45 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: setOutputMarkupPlaceholderTag is for ajax refreshes. See setRenderBodyOnly() or use wicket:container in your markup. Martijn On Fri, Dec 26, 2008 at

Re: Modal window not appearing in IE

2008-12-27 Thread 新希望软件 -- 俞宏伟
I hava same problem. watch wicket ajax debug windows, response content is empty in IE 6 *INFO: *Received ajax response (69 characters) *INFO: * ?xml version=1.0 encoding=UTF-8?ajax-response/ajax-response *INFO: *Response parsed. Now invoking steps... but response content is correct in

Re: Modal window not appearing in IE

2008-12-27 Thread 新希望软件 -- 俞宏伟
Here is my modalwindow code: final ModalWindow mwCreateOrder = new ModalWindow(mwCreateOrder); add(mwCreateOrder); final CreateOrderPanel createOrderPanel = new CreateOrderPanel(mwCreateOrder, mwCreateOrder.getContentId(), shop.getShopNum());

Problem with inline javascript

2008-12-27 Thread Piotr Jakubowski
Hi! Is there any way to make Wicket use unobtrusive way to attach ajax behaviors to html elements instead of putting them inline into html? I have a problem as I have a TextField to input search pattern and then I use Ajax to show popUp with search results. The thing is the search results always

Re: Problem with inline javascript

2008-12-27 Thread Jeremy Thomerson
How are you doing the auto-complete? AutoCompleteTextField uses the following code, which renders in the head of the page - not inline. You could / should use it in your own behaviors as well. response.renderOnDomReadyJavascript(your js); -- Jeremy Thomerson http://www.wickettraining.com On

bug in firefox in file uploads?

2008-12-27 Thread Jonathan Locke
i get the stack trace below when uploading files in 1.4-rc1 it only happens in firefox. safari seems to be fine. is this a known problem or should i file a bug? thanks, jon WARN - Form - Upload failed: Processing of multipart/form-data request failed. null

Re: WebPage for serving binary image data

2008-12-27 Thread Jeremy Thomerson
Although I haven't tested this theory, I used the ThreadLocal because I am fairly sure that the shared resources are shared across threads (multiple simultaneous requests) without synchronization. Therefore, you need to keep the parameters between method invocations, but can't keep it in a normal

Re: how to start wicketstuff-core's GMAP2

2008-12-27 Thread Jeremy Thomerson
The one in wicketstuff-core (push-parent/push-examples) works - use same instructions. I don't know anything about those projects (or why there is one in core and one above it). But the one in core works. -- Jeremy Thomerson http://www.wickettraining.com On Sat, Dec 27, 2008 at 12:30 AM,

Re: [OT] wicket users around the world

2008-12-27 Thread Doug Leeper
St. Charles, IL (an hour west of Chicago) First created two new Wicket apps for production and now migrating existing apps to wicket. -- View this message in context: http://www.nabble.com/-OT--wicket-users-around-the-world-tp20962108p21186824.html Sent from the Wicket - User mailing list

Re: [Announce] wicketstuff-push ported to use wicket 1.4 jetty 6.1.14

2008-12-27 Thread Jeremy Thomerson
Rodolfo - why is there still a wicketstuff-push folder in trunk [1]? I didn't notice until today when a user asked a question about it. Was it an oversight, or is it something different? Just Curious and Confused, Jeremy Thomerson http://www.wickettraining.com On Tue, Dec 9, 2008 at 6:46 AM,

Re: [OT] wicket users around the world

2008-12-27 Thread Piotr Jakubowski
Polish guy working in Denmark :) -- View this message in context: http://www.nabble.com/-OT--wicket-users-around-the-world-tp20962108p21188237.html Sent from the Wicket - User mailing list archive at Nabble.com. - To

Using the org.apache.wicket.jmx MBeans with WebSphere

2008-12-27 Thread shetc
Hi All, I'm relatively new to using JMX and I would very much like to use the Wicket MBeans with my WebSphere 6.1 Wicket application. I know how to use Spring to register my own simple MBeans with WebSphere, but can't figure out how to register the Wicket ones. For example, if I try to register

Modal Window height

2008-12-27 Thread David Ojeda
Hello all, I am using a modal window with a panel inside. I would like the modal window to have the same height of my panel, so I was wondering if anyone has been able to do this. Apparently, I can only set the height to specific int-values, rather than auto. I am using wicket and

Re: Using the org.apache.wicket.jmx MBeans with WebSphere

2008-12-27 Thread Phil Grimm
Steve, I don't know that much about Wicket JMX either, but... I just added wicket-jmx-1.4-rc1.jar to my CLASSPATH and the Wicket MBean shows up in jconsole. I also add the -Dcom.sun.management.jmxremote option to the JVM startup. Phil On Sat, Dec 27, 2008 at 4:33 PM, shetc sh...@bellsouth.net

Re: Modal Window height

2008-12-27 Thread Matej Knopp
Hi, try modalwindow.setUseInitialHeight(false); -Matej On Sat, Dec 27, 2008 at 9:39 PM, David Ojeda dojeda-l...@integra.la wrote: Hello all, I am using a modal window with a panel inside. I would like the modal window to have the same height of my panel, so I was wondering if anyone has

Re: [OT] wicket users around the world

2008-12-27 Thread Swaroop Belur
Bengaluru (formerly Bangalore) , India Used it for 1.5 yrs on a project -swaroop belur On Fri, Dec 12, 2008 at 12:27 AM, francisco treacy francisco.tre...@gmail.com wrote: to know a little bit more of our great (and vast) community, i was just wondering if you're keen on sharing where you

Dynamically generating an img tag

2008-12-27 Thread Cristina
Hi, I'm trying to generate an img tag pointing to a Google chart at http://chart.apis.google.com/. I'm getting the chart URL as a string and I need to generate the img tag in order to display it as an image. I'm trying to use a Label, like: HTML: div wicket:id=imgDisplayimg tag

Re: Dynamically generating an img tag

2008-12-27 Thread Jan Kriesten
Hi Cristina, Java: // prefix and sufix hold the start and end of the img tag String imgTag = prefix + getImgURL() + sufix; add(new Label(imgDisplay, imgTag)); try: add(new Label(imgDisplay, imgTag).setEscapeModelStrings(false)); Best regards, --- Jan.

Re: Dynamically generating an img tag

2008-12-27 Thread Jonathan Locke
you might also look at this: http://www.codecommit.com/blog/java/a-wicket-api-for-google-charts Cristina wrote: Hi, I'm trying to generate an img tag pointing to a Google chart at http://chart.apis.google.com/. I'm getting the chart URL as a string and I need to generate the img tag in