Re: HTML Editing component

2009-11-12 Thread Igor Vaynberg
and make sure you check out the entire tinymce hierarchy and mvn install from the root -igor On Wed, Nov 11, 2009 at 11:58 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: you need to add wicketstuff repo to your repositories pom tag -igor On Wed, Nov 11, 2009 at 11:48 PM, Alex Rass

Re: EntityModel

2009-11-12 Thread Matthias Keller
Injection is easy Just call: InjectorHolder.getInjector().inject(this); in your EntityModel constructor. That's it. While developing if you hot-redeploy often, you might also want to do a check in load() like: if (this.whateverService == null) InjectorHolder.getInjector().inject(this);

Re: EntityModel

2009-11-12 Thread Sam Barrow
Oh okay. I've been trying to use @SpringBean which of course didn't work because EntityModel is not a component. Thanks alot! On Thu, 2009-11-12 at 09:02 +0100, Matthias Keller wrote: Injection is easy Just call: InjectorHolder.getInjector().inject(this); in your EntityModel constructor.

RE: HTML Editing component

2009-11-12 Thread Alex Rass
I am an oldie, I use *ant* and hate maven. Every time I have to touch it - something blows up (your brix demo stopped working after a week ;) ) I downloaded the entire wicket-stuff repo instead. That worked great until it died on jazzyplugin All docs say that it's inclided. But it d/n seem to

Updating values of components inside a ListView

2009-11-12 Thread vinay.karmarkar
Hi, I am using a list view to display the data in a tabular format. Each row consists of a Label, TextField, DropDownChoice and Save Button components. The values of each of these components are pre-populated from the database. Now if I change value of the TextField and/or DropDownChoice and

Re: EntityModel

2009-11-12 Thread James Carman
You still have to use @SpringBean with the injector. @SpringBean tells the injector where to inject things. On Thu, Nov 12, 2009 at 3:10 AM, Sam Barrow s...@sambarrow.com wrote: Oh okay. I've been trying to use @SpringBean which of course didn't work because EntityModel is not a component.

AW: bindgen release

2009-11-12 Thread Giambalvo, Christian
This sounds pretty cool. Keep working Stephen. Greets Chris -Ursprüngliche Nachricht- Von: Stephen Haberman [mailto:step...@exigencecorp.com] Gesendet: Donnerstag, 12. November 2009 06:24 An: Jeremy Thomerson Cc: users@wicket.apache.org Betreff: Re: bindgen release Have you done

Re: OT: Relational database + Hibenate vs Content Repository (Jackrabbit)

2009-11-12 Thread danisevsky
I think the best solution is combine JCR and relation database. Some data store to JCR (on filesystem) a some to database. But question is for which kind of data si better JCR. My opinion is that data like photos, blogs, comments is better store in JCR and data like users, roles, classifiers is

Re: Unable to change label of FileUploadField

2009-11-12 Thread I-Kel
Hi Nino, Thanks for your response. I know the article you mention and its contents. The problem, however, is that I don't know the names of the keys to look for. I haven't been able to find them in the API doc of this class (org.apache.wicket.markup.html.form.upload.FileUploadField) either.

Help with Back Button Use Case

2009-11-12 Thread bht
Hi, Wicket has excellent support of versioning due to its server side state, and not only that, it is well documented e.g. in the feature list, wiki. In my use case, versioning is controlled with the objective of turning it off with Component#setVersioned(false) on page level. This appears to

Re: Tree table with check box

2009-11-12 Thread vela
Hello again, The links and node are added in the TreeFragment class. But the TreeFragment is a private inner class in Treetable, could you tell how to use the TreeFragment to acheive this functionality -- View this message in context:

Re: Unable to change label of FileUploadField

2009-11-12 Thread I-Kel
I think I have my answer. Not the answer I was looking for but ok :-( The problem seems to be that it is practically impossible to style an 'input type=file'. Where as with normal buttons you have complete control, when the input type is file, the styling is fully in the hands of the browser.

Wicket Eclipse 3.5 Plugin

2009-11-12 Thread Giambalvo, Christian
Hi all, which is your favorite eclipse plugin? I only know Wicketbench, but it doesn't work correctly with eclipse 3.5. Greets Chris

Re: Updating values of components inside a ListView

2009-11-12 Thread Pedro Santos
list = select from db listview.setList(list) or listview.setDefaultModelObject(object) On Thu, Nov 12, 2009 at 6:14 AM, vinay.karmar...@wipro.com wrote: Hi, I am using a list view to display the data in a tabular format. Each row consists of a Label, TextField, DropDownChoice and Save

Re: HTML Editing component

2009-11-12 Thread Pedro Santos
http://wicketstuff.org/maven/repository/org/wicketstuff/tinymce/1.4.1/ On Thu, Nov 12, 2009 at 6:11 AM, Alex Rass a...@itbsllc.com wrote: I am an oldie, I use *ant* and hate maven. Every time I have to touch it - something blows up (your brix demo stopped working after a week ;) ) I

Re: Proxying SSL on Apache to HTTP on Jetty + Wicket

2009-11-12 Thread Rangel Preis
Thanks Nino, you are correct. In the Jetty tutorial says: ...extending the Connector class of your choice, eg the SelectChannelConnector, and implement the customize... public void customize(org.mortbay.io.EndPoint endpoint, Request request) throws IOException { request.setScheme(https);

How to update model when using AjaxFallbackLink

2009-11-12 Thread Haulyn R. Jason
Hi: I am using AjaxFallbackLink. I have a ListView in a container, and a AjaxFallbackLink per row for delete the current row. But When I click the link, I find the data is deleted but the current ListView doesn't refresh. I think that's because the list object didn't be refreshed, but I do not

Re: How to update model when using AjaxFallbackLink

2009-11-12 Thread Pedro Santos
listOnListViewModel.remove(resource); than you remove the data form your db (service.remove()), and your view On Thu, Nov 12, 2009 at 10:06 AM, Haulyn R. Jason saharab...@gmail.comwrote: Hi: I am using AjaxFallbackLink. I have a ListView in a container, and a AjaxFallbackLink per row for

Re: How to update model when using AjaxFallbackLink

2009-11-12 Thread Haulyn R. Jason
Hi, Santos: That works,thanks. I just update my list, but forget to maintain listview's model. On Thu, Nov 12, 2009 at 8:11 PM, Pedro Santos pedros...@gmail.com wrote: listOnListViewModel.remove(resource); than you remove the data form your db (service.remove()), and your view On Thu, Nov

JavaScript at the bottom of the page

2009-11-12 Thread Alex Parvulescu
hello, I am looking at a thing that is common for most web development performance-improving efforts: JavaScript at the bottom of the page. The head merge features of the framework are very nice, but is there anything that can help me with inserting the scripts at the bottom? Anybody working on

Re: LDM and OSIV problem

2009-11-12 Thread Fernando Wermus
Jeremy, Thanks a lot. This was the problem. But then I have a question about design I made: I am using wizard a lot and I found that having a bean that collects al the entitties through the steps makes my code cleaner. For instance, I can hide some model manipulation into it. But I rose this

Re: JavaScript at the bottom of the page

2009-11-12 Thread Martijn Dashorst
According to the tapestry devs, this is more troublesome than it's worth. Read Howard's message here: http://osdir.com/ml/users-tapestry-apache/2009-02/msg00865.html I'd strongly suggest not going that route. Martijn On Thu, Nov 12, 2009 at 1:54 PM, Alex Parvulescu alex.parvule...@gmail.com

RE: OT: Relational database + Hibenate vs Content Repository (Jackrabbit)

2009-11-12 Thread Jeffrey Schneller
I would be interested in learning what everyone thinks about this. I am planning on using a relational db as described below for things like users, roles, and other relational type things. I am planning on using a JCR for content based things like comments, descriptions, etc... The problem is I

Re: LDM and OSIV problem

2009-11-12 Thread Jeremy Thomerson
A single bean for a wizard is a good idea. But typically you can't use a detachable model in a wizard because you can't persist the state between wizard steps. Therefore, you need to just hold the bean in the component or in a static model that will not detach between steps. -- Jeremy Thomerson

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
So no responses??? Does that mean it cannot be done or its so simple everybody on this distro is stunned by the fact I even posed the question??? :) Anyways, I would appreciate some insight from some of the core Wicket Developers like Igor. Regards, J.D. -Original Message- From:

Re: Calling IN TO Wicket from JSP

2009-11-12 Thread Jeremy Thomerson
I guess a more concrete example from you would be helpful. You should be able to mount a page to a bookmarkable URL and then it will be easy to create a URL to go into Wicket. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Nov 12, 2009 at 9:54 AM, Corbin, James

Re: Calling IN TO Wicket from JSP

2009-11-12 Thread Martin Makundi
If you were running the applications on the same server, I would just make a method in my wicket application...for example MyWicketApplication.getUrl() and call that from JSP code directly. Keep it simple. ** Martin 2009/11/12 Corbin, James jcor...@iqnavigator.com: So no responses???  Does that

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
Let me get some more information for you. One of my engineers is actually doing the work and I believe he tried a bookmarkable URL already and it didn't work. We have a custom wicket filter we created for logging (not using wickets built in http logging -- long story). It appears that the

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
Hmmm...I'll suggest that to our engineering team. I'd be shocked if they didn't already try that, but its worth finding out. J.D. -Original Message- From: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] Sent: Thursday, November 12, 2009 9:05 AM To: users@wicket.apache.org

Re: OT: Relational database + Hibenate vs Content Repository (Jackrabbit)

2009-11-12 Thread Scott Swank
Before you consider a non-rdbms solution you should really think about who might be interested in your data. If anyone in the organization is going to want to report on, or do analysis of the data then it should be in a relational db. How many X per hour, and how does that compare with the same

Re: Calling IN TO Wicket from JSP

2009-11-12 Thread Scott Swank
There's always Apache HttpClient. Hopefully someone else has a better option for you. On Thu, Nov 12, 2009 at 8:34 AM, Corbin, James jcor...@iqnavigator.com wrote: That is exactly the issue that is causing the problem and what I need clarification on how to do J.D. -Original

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Frank Silbermann
The question, I think, is how to deliver request-specific parameters along with the URL to the Wicket page. For example, if a form in a JSP page is to be processed by a Wicket page, how can the JSP's form data to be delivered to the Wicket page? Is that the question? -Original Message-

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
That is exactly the issue that is causing the problem and what I need clarification on how to do J.D. -Original Message- From: Frank Silbermann [mailto:frank.silberm...@fedex.com] Sent: Thursday, November 12, 2009 9:23 AM To: users@wicket.apache.org Subject: RE: Calling IN TO Wicket

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Frank Silbermann
When working within Wicket, we need not concern ourselves with the raw content of the HttpServletRequest object, as our models are automatically updated with the contents. However, I do believe Wicket provides you with the ability to read the HttpServletRequest object if you wish to do so.

RE: OT: Relational database + Hibenate vs Content Repository (Jackrabbit)

2009-11-12 Thread Jeffrey Schneller
Scott, This goes slightly off-topic to wicket but I will post anyhow. That is exactly my plan. Transactional data and data that someone may want to report on would be in a relational database. The content repository would be for exactly that the content. The problem is I don't want to

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
It seems like Wicket would support URLs with request parameters coming from outside the wicket framework. I've looked at the WicketFilter code and it is stripping the URL of its request parameters. It seems like a reasonable thing to support. We are supporting a legacy application and

Re: Calling IN TO Wicket from JSP

2009-11-12 Thread T Ames
We are actually doing this with the POST as suggested below. Our intranet portal is in JSP, and passes info from the portal to individual Wicket apps in this manner. For me, these POST parameters appeared in the Request.getParameterMap() On Thu, Nov 12, 2009 at 11:55 AM, Frank Silbermann

Re: Calling IN TO Wicket from JSP

2009-11-12 Thread Igor Vaynberg
why dont we support them? dont browsers send us urls with query parameters??? -igor On Thu, Nov 12, 2009 at 9:03 AM, Corbin, James jcor...@iqnavigator.com wrote: It seems like Wicket would support URLs with request parameters coming from outside the wicket framework.  I've looked at the

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
Yes, but we are interested in Post parameters. I think we have some ideas based on some of the other forum posts. J.D. -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Thursday, November 12, 2009 10:12 AM To: users@wicket.apache.org Subject: Re: Calling IN

RE: Calling IN TO Wicket from JSP

2009-11-12 Thread Corbin, James
Thanks for the response, we are looking into doing something very similar to this. -Original Message- From: T Ames [mailto:tamesw...@gmail.com] Sent: Thursday, November 12, 2009 10:09 AM To: users@wicket.apache.org Subject: Re: Calling IN TO Wicket from JSP We are actually doing this

Re: Calling IN TO Wicket from JSP

2009-11-12 Thread Martin Makundi
Hi! In my experience this can be accomplished using stateless form. We have a login form on another site and it sends the parameters to a stateless wicket form. ** Martin 2009/11/12 Corbin, James jcor...@iqnavigator.com: Thanks for the response, we are looking into doing something very

Component level FeedbackPanel's (and a form-level one)

2009-11-12 Thread Tomás Rossi
Hi people, ¿What is the Wicket's way of adding component level feedback panels? I mean, having one feedback panel for each form component (on a side or below the field), and somehow a global feedback panel with a filter so that it doesn't show the already showed messages. I tried the

Re: Restarting AjaxLazyLoadingPanel

2009-11-12 Thread rjohara
We are after the same behavior, as well. During the initial page load, the AjaxLazyLoadPanel works great. However, after hiding/showing the image (using an AjaxLink), the panel no longer loads. I tried using the custom ReloadingAjaxLazyPanel, too, and the results were the same as replacing

To WASP or not to WASP?

2009-11-12 Thread Alex Rass
I need a rather simple authentication added to some of my screens. Is WASP still the way to go? Or are there newer/better things now? http://wicketstuff.org/confluence/display/STUFFWIKI/Wicket-Security Thanks. - To

Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
Where can I find the wicket-spring module API docs? It's not clear to me from the website.

Re: Wicket Spring API docs?

2009-11-12 Thread Igor Vaynberg
dont you use attach sources in your IDE? -igor On Thu, Nov 12, 2009 at 12:09 PM, Loritsch, Berin C. berin.lorit...@gd-ais.com wrote: Where can I find the wicket-spring module API docs?  It's not clear to me from the website.

Re: Wicket Spring API docs?

2009-11-12 Thread James Carman
Not everyone wants to use the source code all the time to figure out what's going on. Sometimes it's just nicer to just look at the javadocs online. They used to all be merged together. Is that not going to happen anymore? On Thu, Nov 12, 2009 at 3:16 PM, Igor Vaynberg igor.vaynb...@gmail.com

Re: Wicket Spring API docs?

2009-11-12 Thread James Carman
I really like the hierarchy view. When you want to know what classes are out there that implement a certain interface and how they relate to one another, that comes in very handy. On Thu, Nov 12, 2009 at 3:42 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: your IDE is much better at browsing

RE: Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
I did, but that doesn't help me with knowing what classes are available. For example, I had issues with using the WicketTester to test my Wicket/Spring based app. I finally was able to create my own SpringWicketTester class that would load up the SpringWebApplicationContext that is needed for

Re: Wicket Spring API docs?

2009-11-12 Thread Igor Vaynberg
your IDE is much better at browsing and searching for classes then a javadoc online :) -igor On Thu, Nov 12, 2009 at 12:38 PM, Loritsch, Berin C. berin.lorit...@gd-ais.com wrote: I did, but that doesn't help me with knowing what classes are available. For example, I had issues with using the

Re: Wicket Spring API docs?

2009-11-12 Thread Igor Vaynberg
not sure, you will have to ask martijn. i think there was a problem with the size? until then there are sites like these: http://grepcode.com/snapshot/repo1.maven.org$mav...@org.apache.wicket$wicket@1.4.1 if you want the latest its easy to checkout the source and run mvn javadoc:javadoc. -igor

RE: Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
I hate to be a smart-butt, but if I'm not familiar with how things are named yet search is not very helpful. Javadocs have their place, and are most useful when you are familiarizing yourself with an unfamiliar API. I've now run the mvn target to get the javadocs, which is helpful. Is there

Re: Datepicker model change problem

2009-11-12 Thread wicketnewuser
Hi Anyone has any idea about this wicketnewuser wrote: I have a page with date picker that picks the date, DropdownChoice for hour and minute. When I click today button I change the model in onsubmit method. It is suppose to change the form value in datepicker, hour and minute to

Re: Wicket Spring API docs?

2009-11-12 Thread Pierre Goupil
Hello, I'd be glad to see it. Is there any place where it would fit? Maybe on the Wicket wiki? Regards, Pierre On Thu, Nov 12, 2009 at 9:56 PM, Loritsch, Berin C. berin.lorit...@gd-ais.com wrote: I hate to be a smart-butt, but if I'm not familiar with how things are named yet search is

RE: Wicket Spring API docs?

2009-11-12 Thread Loritsch, Berin C.
It's fairly small. I can include it in an email. If I throw it on the wiki where would be the best place? -Original Message- From: Pierre Goupil [mailto:goupilpie...@gmail.com] Sent: Thursday, November 12, 2009 4:02 PM To: users@wicket.apache.org Subject: Re: Wicket Spring API docs?

SpringWicketTester code (tested with Wicket 1.4 and spring-wicket)

2009-11-12 Thread Loritsch, Berin C.
import javax.servlet.ServletContext; import org.apache.wicket.protocol.http.MockServletContext; import org.apache.wicket.protocol.http.WebApplication; import org.apache.wicket.util.tester.WicketTester; import org.springframework.web.context.WebApplicationContext; import

Re: Datepicker model change problem

2009-11-12 Thread Igor Vaynberg
you need to either call modelchanged() or clearinput() on the ddcs -igor On Thu, Nov 12, 2009 at 12:57 PM, wicketnewuser swarn...@hotmail.com wrote: Hi Anyone has any idea about this wicketnewuser wrote: I have a page with date picker that picks the date, DropdownChoice for hour and

RE: Datepicker model change problem

2009-11-12 Thread Swarnim Ranjitkar
Thank you that did work. I don't know why you have to do modelChanged() on this component exclusively while other component like the minute drop down didn't need it. form.modelchanged() did the refresh on those component. Anyways my problem is solved thank you very much From:

Re: ajax autocomplete

2009-11-12 Thread McIlwee, Craig
Allow me to translate: He tries auto complete example locally (under tomcat in windows) but isn't presented with any auto complete suggestions. The example works for him online. (I think... took a few reads) Craig _ From: nino martinez wael [mailto:nino.martinez.w...@gmail.com] To:

Re: Component level FeedbackPanel's (and a form-level one)

2009-11-12 Thread Daniel Toffetti
Tomás Rossi trossi at mecon.gov.ar writes: Hi people, ¿What is the Wicket's way of adding component level feedback panels? I mean, having one feedback panel for each form component (on a side or below the field), and somehow a global feedback panel with a filter so that it doesn't show

Wicket Stuff Support and Interest

2009-11-12 Thread Lester Chua
Hi, I noticed that in wicket stuff. If I browse the source forge releases. The latest is at 2008 June (Wicket Jquery). What is the status there? It seems that there has been nothing going on in wicket stuff. Did the projects move into Wicket proper? Or did the extension interest died?

Re: Wicket Stuff Support and Interest

2009-11-12 Thread Jeremy Thomerson
A lot of the projects are abandoned test beds of code. But the releases for the ones that are released do not end up in SF releases anyway - they are released through Maven and end up in the Wicket Stuff maven repo. See the WS wiki for info on how to use the repo. -- Jeremy Thomerson

Re: To WASP or not to WASP?

2009-11-12 Thread Martin Makundi
I would just look at the login in ProWicket book... can be found from google books: http://books.google.com/books?id=bA8yTZIZQCsClpg=PP1ots=mmvGOdbMl7dq=%22pro%20wicket%22hl=fipg=PT91#v=onepageq=f=false 2009/11/12 Alex Rass a...@itbsllc.com: I need a rather simple authentication added to some

Error on Websphere 6.1 for Wicket Application

2009-11-12 Thread vinay.karmarkar
Hi, I am using Websphere 6.1 as App Server Rational Application Developer environment for development of Wicket Application. I am getting the following error while trying to access the application. [11/12/09 10:34:24:033 IST] 0031 SystemErr R