Re: [Wicket-user] dataview with scrollbar?

2007-07-09 Thread Alex Objelean
There is no such out of the box component that will do exactly what you need. Wicket give you the flexibility to create whatever you need. You just apply your knowledge of html css (for visual presentation) and can achieve your goal. Using Wicket, you can dynamically load content from anywhere

[Wicket-user] Page getting redirected when accessing from mail reply

2007-07-09 Thread David Leangen
I am trying to implement some features that require feedback from a mail message. The mail message contains an MD5 hashed key that provides the authentication so to speak for that page view. For instance, during my tests, the url generated and included in the mail is this:

Re: [Wicket-user] Mixing Wicket in JSF

2007-07-09 Thread Federico Fanton
On Sat, 2007-07-07 at 16:51 -0700, Eelco Hillenius wrote: I have an existing JSF webapp which I'd like to extend (=build new pages) with Wicket.. Maybe this might give some ideas? http://herebebeasties.com/2007-03-01/jsp-and-wicket-sitting-in-a-tree/ I'll try it right now, many thanks :)

Re: [Wicket-user] (no subject)

2007-07-09 Thread Al Maw
Eelco Hillenius wrote: I think getContextPath is what I need. I am trying to port my app to wicket 1.3 where getContextPath is no longer present in ApplicationSettings. I think it moved to WebApplication. But be sure to read this

Re: [Wicket-user] Page getting redirected when accessing from mail reply

2007-07-09 Thread Arnout Engelen
David Leangen schreef: the url generated and included in the mail is this: http://localhost:8080/app//page?ct=35fa3b27724496d448075cdff5c8856 When I copy that address and paste it into my web browser, the page works as I expect it to. However, if I actually click on that link from my

Re: [Wicket-user] cant see all the word in a displayed tree- node

2007-07-09 Thread Matej Knopp
This is a known bug in the Tree class. To get around it you need to use LabelTree (or LinkTree) from wicket 1.3. -Matej On 7/9/07, kenixwong [EMAIL PROTECTED] wrote: Hi, i had build a tree explore and also given each node with the name ( displayed in the screen) . But then some of the word

[Wicket-user] Embeding dynamic HTML into wicket page

2007-07-09 Thread noban
Hi! I'm trying to embed dynamic HTML (report) into my wicket web page. I'm using this class to do things: public final class EmbeddedReport extends WebComponent implements IResourceListener { private static final long serialVersionUID = 1L; private ReportDynamicWebResource

[Wicket-user] Making response.renderJavascript HTML Strict

2007-07-09 Thread C. Bergström
I'm trying to make part of the wicket-contrib-push-examples validate to html strict doctype... For example this bit.. script type=text/javascript id=org.wicketstuff.dojo.AbstractDefaultDojoBehavior/namespaces/wicketstuff!--/*--![CDATA[/*!--*/ dojo.registerModulePath(wicketstuff,

Re: [Wicket-user] Wicket with JExcel

2007-07-09 Thread Edi
Thank you for all valuable solutions, Consider I have one xls file with lot of data. How can I paginate that xls file and Search the particular column data in the document and update the xls document. Thanking You. Regards, Edi Ayodeji Aladejebi wrote: thats why the source is open for you

Re: [Wicket-user] cant see all the word in a displayed tree- node

2007-07-09 Thread kenixwong
ok..i will download it and try... currently i m using 1.2.4. Thanks a lot Matej Knopp-2 wrote: This is a known bug in the Tree class. To get around it you need to use LabelTree (or LinkTree) from wicket 1.3. -Matej On 7/9/07, kenixwong [EMAIL PROTECTED] wrote: Hi, i had build a

Re: [Wicket-user] Seam2 and Wicket

2007-07-09 Thread Remco Bos
I thought about it some more, and now I think hibernate conversations are not the same as SEAM conversations... But I should try it out someday before posting more blurred thoughts. n8han wrote: Remco Bos wrote: I first thought the conversations / workspace concepts could be usefull, and

[Wicket-user] Detaching your spring dao's business objects from webpage

2007-07-09 Thread Tom Desmet
Hi all, I have a question on using wicket with the spring injector. I would like to create extra-lightweight webpages, and this means that I don't want to serialize all page dependencies (dao's and business objects that are member variables of the pages). I want all dao's and business objects

[Wicket-user] load other action after ModalWindow.close(target)

2007-07-09 Thread kenixwong
hi, i was Show the modal dialog with a page. After i clicked on the submit button, i will call a function to generate the report in local pc and then prompt out to let the user download the file directly.. the problem here is STEP 2 is not functionally. Even i put the STEP 2 after STEP 3 also

Re: [Wicket-user] Detaching your spring dao's business objects from webpage

2007-07-09 Thread Martijn Dashorst
It works and I don't see any inherent dangers, but is there any reason why you can't use the @SpringBean annotation, which makes the spring reference a proxy rather than a transient field? It is quite easy to forget to add 'transient' to the field :) Martijn On 7/9/07, Tom Desmet [EMAIL

Re: [Wicket-user] Detaching your spring dao's business objects from webpage

2007-07-09 Thread Tom Desmet
Hi, thanks for your reply. I used the @SpringBean annotation in combination with the transient keyword. I thought that all @SpringBean marked objects would get serialized when the field was not made transient. So this is not the case? What will be serialized when the serialization routine tries

Re: [Wicket-user] Detaching your spring dao's business objects from webpage

2007-07-09 Thread Martijn Dashorst
On 7/9/07, Tom Desmet [EMAIL PROTECTED] wrote: I used the @SpringBean annotation in combination with the transient keyword. I thought that all @SpringBean marked objects would get serialized when the field was not made transient. The @SpringBean will replace the service with a proxy that knows

Re: [Wicket-user] Portlet Support

2007-07-09 Thread Janne Hietamäki
Wicket portlet support is highly experimental. You can check out the current portlet support from here: http://svn.apache.org/repos/asf/incubator/wicket/branches/wicket-1.3- portlet-support/ Janne On Jul 9, 2007, at 6:21 AM, Dean Del Ponte wrote: I understand that wiki supports portlet

[Wicket-user] StringResourceModel feature or bug??

2007-07-09 Thread Murat Yücel
Hi All, I have some problems when using StringResourceModel. It seems like it is calling the IStringResourceLoader 3 times. I am currently using wicket 1.3.0-incubator. Here is an example: CLASS:TestPage.java public class TestPage extends WebPage { public TestPage() {

Re: [Wicket-user] Seam2 and Wicket

2007-07-09 Thread Al Maw
Paolo Di Tommaso wrote: I'm not absolutely specking about a core implementation. This should regards a Seam or just JBPM integration. JBPM provides a very nice process flow designer. I think would be possible to have a process flow that defines the Wicket page and the inner model

Re: [Wicket-user] Extra / when using nice URLs

2007-07-09 Thread Al Maw
David Leangen wrote: Is there a reason why I am getting an extra / when using nice URLs? For example, when I mount a page as (/search, SearchPage.class), if I use that as my Home page, no problems. However, any time I navigate to that page via a Wicket link, the URL gets rendered as:

Re: [Wicket-user] Wicket Dojo widget loaded by ajax request fails

2007-07-09 Thread Vincent Demay
Hey, I commited a fix yesterday about that. Is it ok for you now? -- Vincent Thies Edeling wrote: Vincent Demay wrote: Thies Edeling a écrit : Hi all Been playing a bit with the wicketstuff dojo contrib. I have some problems with adding a DojoDatePicker (or any other Dojo

[Wicket-user] Swing TableModel to Wicket DataTable

2007-07-09 Thread Francis De Brabandere
Hi all, I'm working on a web interface for our internal data management application. We connect to our server via RMI with a Swing client. Our server currently provides the client with a swing tablemodel. I would like to reuse that code for our wicket web application but I'm having a hard time

[Wicket-user] Can not resize iframe in FireFox to 100%. HELP!

2007-07-09 Thread westpine
Hi... I use iframe on my page iframe width=100% height=100% wicket:id=content src=[actual url goes here]/ Like this. In IE and Opera everything is OK. But in FF this iframe just couple hundreds pixels height and i have to scroll it's content. How to solve this problem? -- View this message in

Re: [Wicket-user] How to translate system messages?

2007-07-09 Thread westpine
Thank you very much. It works fine. What is JIRA issue (teapot smile goes here) and where can i find list of standard wicket messages? I'll be glad to make russian translation. Eelco Hillenius wrote: westpine wrote: Hi! I need to view system wicket messages like page has expired on

Re: [Wicket-user] Can not resize iframe in FireFox to 100%. HELP!

2007-07-09 Thread Matej Knopp
This is hardly a wicket fault. It's a html/css problem. -Matej On 7/9/07, westpine [EMAIL PROTECTED] wrote: Hi... I use iframe on my page iframe width=100% height=100% wicket:id=content src=[actual url goes here]/ Like this. In IE and Opera everything is OK. But in FF this iframe just

Re: [Wicket-user] Page getting redirected when accessing from mail reply

2007-07-09 Thread Arnout Engelen
David Leangen schreef: http://localhost:8080/app//page?wicket:pageMapName=wicket-0ct=% 5BLjava.lang.String%3B%401e26e52 I looked into this a bit, and this is due to some confusion about whether the RequestParameters parameters should be a MapString, String or a MapString, String[]. Not

�u�����h���v �V�����

2007-07-09 Thread �������v
\x8Ae\x83u\x83\x89\x83\x93\x83h\x8E\x9E\x8Cv\x82\xCC\x95\xBD\x8Ds\x95i\x82\xCC\x89\xB5\x94\x84\x82\xE8\x89\xBF\x8Ai \xA1\x8D\xC5\x92\xE1\x89\xBF\x8Ai\x82\xCD7800\x89~\x82\xA9\x82\xE7

�u�����h���v �V�����

2007-07-09 Thread �������v
\x8Ae\x83u\x83\x89\x83\x93\x83h\x8E\x9E\x8Cv\x82\xCC\x95\xBD\x8Ds\x95i\x82\xCC\x89\xB5\x94\x84\x82\xE8\x89\xBF\x8Ai \xA1\x8D\xC5\x92\xE1\x89\xBF\x8Ai\x82\xCD7800\x89~\x82\xA9\x82\xE7

Re: [Wicket-user] Wicket Dojo widget loaded by ajax request fails

2007-07-09 Thread Thies Edeling
Just tried with revision 2633 and I still have the same problem :( Vincent Demay wrote: Hey, I commited a fix yesterday about that. Is it ok for you now? -- Vincent Thies Edeling wrote: Vincent Demay wrote: Thies Edeling a écrit : Hi all Been playing a bit with the

�u�����h���v �V�����

2007-07-09 Thread �������v
\x8Ae\x83u\x83\x89\x83\x93\x83h\x8E\x9E\x8Cv\x82\xCC\x95\xBD\x8Ds\x95i\x82\xCC\x89\xB5\x94\x84\x82\xE8\x89\xBF\x8Ai \xA1\x8D\xC5\x92\xE1\x89\xBF\x8Ai\x82\xCD7800\x89~\x82\xA9\x82\xE7

Re: [Wicket-user] Seam2 and Wicket

2007-07-09 Thread Johan Compagner
Using the designer the user could draw visually the flow between pages .. but this is what Seam do with page flow. This strikes me as doing something shiny just because you can, rather than because it would be useful. The reason you need this kind of stuff in Seam is presumably that you end

Re: [Wicket-user] Can not resize iframe in FireFox to 100%. HELP!

2007-07-09 Thread Federico Fanton
On Mon, 2007-07-09 at 06:19 -0700, westpine wrote: Hi... I use iframe on my page iframe width=100% height=100% wicket:id=content src=[actual url goes here]/ Like this. In IE and Opera everything is OK. But in FF this iframe just couple hundreds pixels height and i have to scroll it's

Re: [Wicket-user] access to private fields

2007-07-09 Thread Johan Compagner
i am als -1 on removing this. it won't help a bit also this feature is already in the PropertyResolver from november last year. So already 8 or 9 months in the code base. johan On 7/9/07, Matej Knopp [EMAIL PROTECTED] wrote: I'm a strong -1 on removing access to private fields. This wouldn't

Re: [Wicket-user] How to translate system messages?

2007-07-09 Thread Eelco Hillenius
Thank you very much. It works fine. What is JIRA issue That refers to the issue tracker we use: http://issues.apache.org/jira/browse/WICKET (and JIRA is the software, http://www.atlassian.com/software/jira/) (teapot smile goes here) and where can i find list of standard wicket messages? I'll

Re: [Wicket-user] Swing TableModel to Wicket DataTable

2007-07-09 Thread Igor Vaynberg
On 7/9/07, Francis De Brabandere [EMAIL PROTECTED] wrote: Hi all, I'm working on a web interface for our internal data management application. We connect to our server via RMI with a Swing client. Our server currently provides the client with a swing tablemodel. I would like to reuse that

[Wicket-user] Resource finder for files in a JAR

2007-07-09 Thread Juan Asensio Sánchez
Hi I am trying to develop an application that will be themeable. I want themes to be distributed packed in jars, but i don't know how to make Wicket search inside Jars for the html templates. Till now, i used this code for loading templates from a directory: CompoundResourceStreamLocator locator

[Wicket-user] do not want to log ERROR when visiting a nonexistant page

2007-07-09 Thread Lowell Kirsh
In my web app, when someone visits a page that doesn't exist (eg. by manually mucking with the url), they might end up at an error page with a stack trace, and also when that happens, wicket logs an ERROR like: ERROR [RequestCycle] - Unable to load class with name: com.foo.bar. I don't like that

Re: [Wicket-user] Wicket Dojo widget loaded by ajax request fails

2007-07-09 Thread Vincent Demay
I don't understand, it's work on my side... could you please create a sample quickstart project in order to investigate on it. -- Vincent Thies Edeling a écrit : Just tried with revision 2633 and I still have the same problem :( Vincent Demay wrote: Hey, I commited a fix yesterday

Re: [Wicket-user] Migrate to 1.3 - custom label/link problem

2007-07-09 Thread Robert .
On 7/8/07, Robert . [EMAIL PROTECTED] wrote: I have a problem migrating from Wicket 1.2.6 to 1.3 I have a custom LabelLink component that I used to generate links, including labels, in a data table. This worked fine in 1.2.6, but now I get the following error: unable to find component with

Re: [Wicket-user] Wicket Dojo widget loaded by ajax request fails

2007-07-09 Thread Thies Edeling
Added a test project to the jira issue demonstrating the behaviour. gr, Thies Vincent Demay wrote: I don't understand, it's work on my side... could you please create a sample quickstart project in order to investigate on it. -- Vincent Thies Edeling a écrit : Just tried with

[Wicket-user] Getting compoundpropertymodel from a parent

2007-07-09 Thread Tauren Mills
I'm confused on how to access a CompoundPropertyModel from within a child Panel. I set a CompountPropertyModel in a parent panel. But doing a getModel() in the child panel returns null. I thought that wicket would hunt back up the component tree to find an appropriate CompountPropertyModel. How

Re: [Wicket-user] Getting compoundpropertymodel from a parent

2007-07-09 Thread Igor Vaynberg
On 7/9/07, Tauren Mills [EMAIL PROTECTED] wrote: I'm confused on how to access a CompoundPropertyModel from within a child Panel. I set a CompountPropertyModel in a parent panel. But doing a getModel() in the child panel returns null. I thought that wicket would hunt back up the component

[Wicket-user] Non-English Boolean Conversion

2007-07-09 Thread Logi Ragnarsson
Hello, I'm working on a project which needs to be fully internationalizable and whose primary language will in fact not be English. I've written an I18nBooleanConverter that I like, and have translated to a few languages with help from people in the IRC channel. It's included below. I rather

[Wicket-user] Extra caret ^ symbol in AjaxCallDecorator output

2007-07-09 Thread NateBot2000
Hello: I'm seeing some weirdness in the javascript output by an AjaxCallDecorator. This is my call decorator: protected IAjaxCallDecorator getAjaxCallDecorator() { return new AjaxCallDecorator() { static final long serialVersionUID = 1L;

Re: [Wicket-user] Getting compoundpropertymodel from a parent

2007-07-09 Thread Tauren Mills
Component.initModel() calls getParent() and it returns null. I guess that makes sense because the child hasn't been added to the parent yet. That happens after the child constructor has finished. So how would I do this? Tauren On 7/9/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/9/07,

Re: [Wicket-user] Extra / when using nice URLs

2007-07-09 Thread David Leangen
Is there a reason why I am getting an extra / when using nice URLs? For example, when I mount a page as (/search, SearchPage.class), if I use that as my Home page, no problems. However, any time I navigate to that page via a Wicket link, the URL gets rendered as:

Re: [Wicket-user] Getting compoundpropertymodel from a parent

2007-07-09 Thread Igor Vaynberg
On 7/9/07, Tauren Mills [EMAIL PROTECTED] wrote: Component.initModel() calls getParent() and it returns null. I guess that makes sense because the child hasn't been added to the parent yet. That happens after the child constructor has finished. that makes sense So how would I do this?

Re: [Wicket-user] Page getting redirected when accessing from mail reply

2007-07-09 Thread David Leangen
Cool, thank you! I'll try that out tomorrow. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Arnout Engelen Sent: 9 July 2007 22:59 To: [EMAIL PROTECTED]; wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Page getting redirected when

Re: [Wicket-user] Extra / when using nice URLs

2007-07-09 Thread David Leangen
I guess this would just be a problem with the encoder. I'll try and take a closer look tomorrow. It's just that unfortunately in my setup, I don't have an easy way of stepping through the wicket code. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of

Re: [Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-07-09 Thread mperham
Any progress on this? I just hit this bug this afternoon and it forces us to use labels. We are currently using 1.2.5. Please post a JIRA issue so I can watch it. igor.vaynberg wrote: On 7/3/07, Huergo Perez [EMAIL PROTECTED] wrote: Hi All, I just grabbed Wicket 1.3.0-beta2 and tried

Re: [Wicket-user] do not want to log ERROR when visiting a nonexistant page

2007-07-09 Thread Nathan Hamblen
Lowell Kirsh wrote: In my web app, when someone visits a page that doesn't exist (eg. by manually mucking with the url), they might end up at an error page with a stack trace, and also when that happens, wicket logs an ERROR like: ERROR [RequestCycle] - Unable to load class with name:

Re: [Wicket-user] Extra caret ^ symbol in AjaxCallDecorator output

2007-07-09 Thread NateBot2000
Matej Knopp-2 wrote: The ]^ sequence is perfectly valid and it should be properly decoded client side (thus encoding='wicket1'). There might be another javascript problem, quickstart would be helpful, as well as full ajax console output. I think you're right. I just found a closing )

Re: [Wicket-user] Getting compoundpropertymodel from a parent

2007-07-09 Thread Tauren Mills
Thanks Igor, putting it getObject makes total sense! However, now I'm confused on how to access the property I want within getObject: public Object getObject(final Component component) { int size = choices.size(); int index = choices.indexOf(component.getModelObject()); int width =

Re: [Wicket-user] Getting compoundpropertymodel from a parent

2007-07-09 Thread Igor Vaynberg
On 7/9/07, Tauren Mills [EMAIL PROTECTED] wrote: Thanks Igor, putting it getObject makes total sense! However, now I'm confused on how to access the property I want within getObject: public Object getObject(final Component component) { int size = choices.size(); int index =

Re: [Wicket-user] do not want to log ERROR when visiting a nonexistant page

2007-07-09 Thread Eelco Hillenius
In my web app, when someone visits a page that doesn't exist (eg. by manually mucking with the url), they might end up at an error page with a stack trace, and also when that happens, wicket logs an ERROR like: ERROR [RequestCycle] - Unable to load class with name: com.foo.bar. I don't like

Re: [Wicket-user] Problem with Close the top-level modal window first message

2007-07-09 Thread jamieballing
It turns out if you have a modal within an iframe (i.e. backed by a page) and want a secondary modal, that modal also needs to be in an iframe. Incidentally, the problem occurs in one of the wicketstuff examples. If you go to:

Re: [Wicket-user] jWeekend London-based Wicket training course on July 14th/15th

2007-07-09 Thread jweekend
We have just rescheduled this course for the weekend of July 21-22 after events on tonight's episode of ##wicket. Conveniently, this gives Al Maw and I a few more days on the (1.3beta2 based) http://jweekend.co.uk/dev/JW703 course material . The http://jWeekend.co.uk jWeekend.co.uk site (now

Re: [Wicket-user] do not want to log ERROR when visiting a nonexistant page

2007-07-09 Thread Ingram Chen
This anonys me too. IMHO I think by default, it should log error in development mode, and keep silent in deployment mode. On 7/10/07, Eelco Hillenius [EMAIL PROTECTED] wrote: In my web app, when someone visits a page that doesn't exist (eg. by manually mucking with the url), they might end

Re: [Wicket-user] do not want to log ERROR when visiting a nonexistant page

2007-07-09 Thread Eelco Hillenius
On 7/9/07, Ingram Chen [EMAIL PROTECTED] wrote: This anonys me too. IMHO I think by default, it should log error in development mode, and keep silent in deployment mode. Sounds reasonable. If someone wants to open a JIRA issue for it please... Eelco

[Wicket-user] Optional bindings controlled by the markup

2007-07-09 Thread Chris Colman
I can understand that an error needs to be raised when some markup attempts to bind to a component who's wicket id can't be found in the wicket page class or component class - that make sense but what about the other way around... What if I wanted to provide a component class with a whole range

Re: [Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-07-09 Thread Juergen Donnerstag
Provided I'm not mistaken there is a jira issue for it and it has already been fixed in 1.3 trunk. It won't get fixed in 1.2.x. https://issues.apache.org/jira/browse/WICKET-721 Juergen On 7/10/07, mperham [EMAIL PROTECTED] wrote: Any progress on this? I just hit this bug this afternoon and

Re: [Wicket-user] 401 HTTP authentication?

2007-07-09 Thread Jesse Barnum
Sean, Jean-Baptiste, Johan, Maurce, thanks for all of your help. I ended up using a combination of all suggestions, which worked well. Here's the final code in my Application class in case it's useful to anybody else: protected void init() { super.init();

[Wicket-user] Localized Attributes

2007-07-09 Thread antonyb
Hello, Just spent a while reading through the forum archives trying to find out how to localize attributes, particularly input type=submit value=XX / There's a couple of very long threads about this, but as far as I can see no conclusion was reached! So, is there an accepted way of

Re: [Wicket-user] Localized Attributes

2007-07-09 Thread shumbola
Здравствуйте, antonyb. Вы писали Tuesday, July 10, 2007, 9:08:51 AM: Hello, Just spent a while reading through the forum archives trying to find out how to localize attributes, particularly input type=submit value=XX / There's a couple of very long threads about this, but as far as

Re: [Wicket-user] Localized Attributes

2007-07-09 Thread rc.china
The Pro Wicket book has provided a solution: 1) input type=submit wicket:id=save value=Save/ 2) form.add(new Button(save,new ResourceModel(userProfile.save)); 3) You need to specify the localized message in the properties file (UserProfilePage.properties, for example): userProfile.save