Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-08-20 Thread Benjamin Ernst
Hi, has nobody an idea? Any help would be great! Thanks, Benjamin 2007/8/16, Benjamin Ernst [EMAIL PROTECTED]: Hi, I have a problem with the wicket-stuff Tinymce-Editor in the InternetExplorer: the first time the page is loaded, there are no tool-icons, just the text-area. And IE gives

Re: Editable DataTeble

2007-08-20 Thread fero
Thanks, I think I will use AjaxEditableLabel more often;) Fero Eelco Hillenius wrote: On 8/19/07, fero [EMAIL PROTECTED] wrote: I see, but I don't know how to do editable labels. I could not find it among wicket/wicket-extensions classes. Plz tell me how to do them. See

Re: Servlet spec 2.3 vs. 2.4

2007-08-20 Thread Johan Compagner
they should run fine on 2.4 (tomcat 5) or 2.5. (tomcat 6) as long as the 2.4/2.5 methods are not called. I guess they are just new methods that aren't implemented yet? johan On 8/20/07, David Leangen [EMAIL PROTECTED] wrote: Just out of curiosity... Is there a reason why Wicket is using

Re: Servlet spec 2.3 vs. 2.4

2007-08-20 Thread David Leangen
There are currently 2 classes that do not compile with 2.4: BufferedHttpServletResponse MockHttpServletResponse they should run fine on 2.4 (tomcat 5) or 2.5. (tomcat 6) as long as the 2.4/2.5 methods are not called. I guess they are just new methods that aren't implemented

Re[2]: Can we do straight print in a java web application?

2007-08-20 Thread Oleg Taranenko
Hello Igor, Or applet. Right now i've completed prototype project that prints labels on barcode printer under web application. It uses Java Print Service API on client side to submit appropriate print jobs. It works with some restrictions. Cheers, Oleg Saturday, August 18, 2007, 6:02:41 PM,

Loading global resources in test?

2007-08-20 Thread Erik Underbjerg
Hello, I have just moved some localized string resources to a myApplication.properties file, because they need to accessed by different panels and pages, and it works fine. However, when running my unit tests with WicketTester, it can't find the resources in myApplication.properties. I

AjaxEditableLabel

2007-08-20 Thread fero
Hi, I use AjaxEditableLabel like this add(new AjaxEditableLabel(code, new PropertyModel(unit, typ.ecode))); But it doesn't show the value form PropertyModel, even, if the value in the model is set (i make sure with debugger). And of course I never get an input field. I used AjaxEditableLabel

Re: Editable DataTeble

2007-08-20 Thread Gumnaam
One thing to keep in mind about AjaxEditableLabel in wicket 1.3 is that the cancel functionality doesn't work well in firefox. See this for details https://issues.apache.org/jira/browse/WICKET-520 in essence, once you are in edit mode in firefox, there is no way to cancel the edit, other than

Re: Editable DataTeble

2007-08-20 Thread Gerolf Seitz
i found a solution for the problem with firefox. see the last comment from Al. but seeing that it is planned for 1.3.0-rc1, it's not going to happen in the very near future. you could vote for that issue, so it may get more attention... did you have any chance to look at it, Al? gerolf On

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-08-20 Thread Thijs
He Benjamin, I have the same problem. I have opened a JIRA issue for it: http://wicketstuff.org/jira/browse/WCTINYMCE-2 But no response so far. I can't help you any further but lets hoop the maintainer of the tinymce project picks it up... Thijs Benjamin Ernst wrote: Hi, has nobody an

Re: AjaxEditableLabel

2007-08-20 Thread Martijn Dashorst
Is the property expression correct? shouldn't that be type.code ? Martijn On 8/20/07, fero [EMAIL PROTECTED] wrote: Hi, I use AjaxEditableLabel like this add(new AjaxEditableLabel(code, new PropertyModel(unit, typ.ecode))); But it doesn't show the value form PropertyModel, even, if the

Re: Can we do straight print in a java web application?

2007-08-20 Thread hillj2
Actually, this is available. It is possible to embed javascript inside a PDF. It depends on what you're using to generate the PDF however. I'm sure Acrobat can do it. There a library called iText which can. I think it can even go into an already created PDF and insert the necessary JS. We

Re: AjaxEditableLabel

2007-08-20 Thread fero
It is ok now, I only misspelled wicket:id and could not find it for a long time:) Thanks Fero Martijn Dashorst wrote: Is the property expression correct? shouldn't that be type.code ? Martijn On 8/20/07, fero [EMAIL PROTECTED] wrote: Hi, I use AjaxEditableLabel like this

Re: Updates within Panels in datatable

2007-08-20 Thread salmas
If I want to update each row then I believe I will have to upgrade to 1.3beta which my company doesn't want to do yet. Updating the entire table looks fine to me though, not too much flicker or delay with that. Thanks so much for your help with this. igor.vaynberg wrote: use

Double clicking on a table row

2007-08-20 Thread Federico Fanton
Hi everyone! I'm looking for a little help.. I need to add an ondblclick functionality to a DataTable, so that doubleclicking on a row would jump to another page (passing information about the clicked row).. I subclassed DataTable so that I could override newRowItem to let it return a modified

DownloadLink hanging

2007-08-20 Thread Thomas Singer
Hi, We are using Wicket 1.3 beta 2 running in Tomcat and have a couple of DownloadLinks on a page (created with 'new DownloadPage(parameters)') for larger files (a couple of MB). I open different tabs of the same page in Opera and click these download links, so the downloads should happen in

Re: help script.aculo.us wicket

2007-08-20 Thread anita nichols
Is the wicketstuff-scriptaculous will work on wicket 1.2? Anyone know? Also if it is possible to combine with AjaxEditableLabel? On 8/7/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: look at the wiki?

TreeTable...how to refect a label change on TreeNode

2007-08-20 Thread Doug Leeper
I am using the TreeTable in Wicket Extensions. When selecting on a node, a page allowing the user to edit the node value (and other useful info). Upon saving, I would like the associated TreeNode to show the new value. How would one go about having the TreeNode get its value again? Thanks --

Bookmarkable link to a page in another WebApplication

2007-08-20 Thread Dariusz Wojtas
Hi, What is the best way to create bookmarkable link to a page in another application in the same WAR file? I mount some pages to some urls, this way: mountBookmarkablePage(/navi, ProductCategoryPage.class); And it perfectly works. But later I want to create link to this page from a page in

Re: Can we do straight print in a java web application?

2007-08-20 Thread Evan Chooly
There's an onLoad event on a PDF (sounds vaguely familiar) in which you can initiate a print. I've done this on previous projects and works just fine. I can't recall if I autoclosed that PDF as well but it seems likely. On 8/20/07, hillj2 [EMAIL PROTECTED] wrote: Actually, this is available.

Re: Loading global resources in test?

2007-08-20 Thread Igor Vaynberg
it should probably be MyApplication.properties unless you have myApplication.java -igor On 8/20/07, Erik Underbjerg [EMAIL PROTECTED] wrote: Hello, I have just moved some localized string resources to a myApplication.properties file, because they need to accessed by different panels

Re: back button processing doesn't work in Opera

2007-08-20 Thread Igor Vaynberg
please file a jira issue. this was supposed to work. -igor On 8/20/07, Andrew Klochkov [EMAIL PROTECTED] wrote: Use case: 1) user loads page A 2) he goes to page B 3) he hits back button 4) he clicks an ajax link on the page A, but wicket thinks that page B is current page because

Re: Bookmarkable link to a page in another WebApplication

2007-08-20 Thread Igor Vaynberg
not across contexts, contexts in webapps are isolated. so you have to construct the url manually, which is easy since you know the mount point. so construct a url and give it to externallink component. -igor On 8/20/07, Dariusz Wojtas [EMAIL PROTECTED] wrote: Hi, What is the best way to

Redirected after BrowserInfoPage and mounted Pages.

2007-08-20 Thread gumnaam
Short description :- When using mounted pages, wicket redirects to wrong URL, after BrowserInfoPage, which is called by Session.get().getClientInfo(), when gatherExtendedBrowserInfo is true in RequestCycleSettings. Long description :- I need to determine the Client's time zone in my

Question about using UploadWebRequest

2007-08-20 Thread oliver.henlich
The javadoc on org.apache.wicket.extensions.ajax.markup.html.form.upload.UploadWebRequest explains how to install it (Note: javadoc has problems with it...maybe the @ symbol?). class MyApplication extends WebApplication { ... @Override protected WebRequest newWebRequest(HttpServletRequest

Problem following TextField example

2007-08-20 Thread dtoffe
Hi !! I'm following TextField example at http://wicketstuff.org/wicket13/compref/?wicket:bookmarkablePage=%3Aorg.apache.wicket.examples.compref.TextFieldPage (sorry long line) After failing for a while I've found these differences in the generated html code: In the Wicket

Re: Problem following TextField example

2007-08-20 Thread Eelco Hillenius
Hi !! I'm following TextField example at http://wicketstuff.org/wicket13/compref/?wicket:bookmarkablePage=%3Aorg.apache.wicket.examples.compref.TextFieldPage (sorry long line) After failing for a while I've found these differences in the generated html code: In the

Re: Problem following TextField example

2007-08-20 Thread Eelco Hillenius
you should worry about them. Duh. You should *not* worry about them :) Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem following TextField example

2007-08-20 Thread dtoffe
Well, one thing more I've remembered, in one of the examples there is a POJO used as a backing model, which implements IClusterable, but it doesn't seems like that interface belongs to Wicket as of version 1.2.6, or even the extensions, perhaps all or part of the examples are built on Wickets

Re: Problem following TextField example

2007-08-20 Thread dtoffe
Yes, as I said in my last post, I'm using 1.2.6, last stable version as of some two or three days ago. Thanks for your example !! Daniel Eelco Hillenius wrote: /WicketTest/wicket/ is most likely due to directory structure of the project (I'm using Netbeans with the Wicket

Re: Problem following TextField example

2007-08-20 Thread Eelco Hillenius
Yes, as I said in my last post, I'm using 1.2.6, last stable version as of some two or three days ago. Thanks for your example !! That's why those two URLs are so different. What is not clear to me is what exactly goes wrong? Do you get exceptions? Or do your models not get upated