Re: best or common practice for application plug-ins

2009-07-20 Thread Per Lundholm
Well, plug-ins, are they compile-time or run-time? Sounds like compile-time from your description. Also, from your description, it sounds that it is more than web-tier. Remember Wicket is web-tier only. There are solutions for the server tier for plug-ins. Look att OSGi http://www.osgi.org and E

How do I set a selected item outside of an inmethod datagrid?

2009-07-20 Thread Steve Tarlton
I have a table that contains history entries of an item table. Whenever I change the selection in the item table, I repopulate the history in the history table. What I would like to do is select the newest history entry in the history table by default whenever I change the selection on the item tab

Re: best or common practice for application plug-ins

2009-07-20 Thread Sam Stainsby
Yes, different because I'm not talking about a collection of components per se, but how add-on components are deployed to an already running application by systems administrators, not developers, as per my initial post. On Mon, 20 Jul 2009 09:08:38 +0300, Martin Makundi wrote: > Different form

Re: best or common practice for application plug-ins

2009-07-20 Thread Sam Stainsby
On Mon, 20 Jul 2009 09:10:57 +0200, Per Lundholm wrote: > Well, plug-ins, are they compile-time or run-time? Sounds like > compile-time from your description. Runtime I think if I understand you correctly. Suppose a sys admin has already deployed the war file for the core application and wants

Re: best or common practice for application plug-ins

2009-07-20 Thread Linda van der Pal
Seeing how it looks like you want to create your own CMS, you might want to have a look at Hippo CMS. They've built it in Wicket AFAIK. Regards, Linda Sam Stainsby wrote: On Mon, 20 Jul 2009 09:10:57 +0200, Per Lundholm wrote: Well, plug-ins, are they compile-time or run-time? Sounds lik

Re: best or common practice for application plug-ins

2009-07-20 Thread Olger Warnier
Hi Sam, It could well be more than web-tier, but I thought if anyone has done this is would be a Wicket user :-) I looked at OSGi before I started my framework. I didn't see anything about deployment of add-ons/plug- ins. I already have a framework that incorporates IoC as a fundamental fea

Re: Tab panel child

2009-07-20 Thread Gerald Fernando
yes i mean it.am debut to wicket.how can i achive it please help me my requirement is when i click first tab it should shows a Grid > 2nd tab - panel > 3rd tab - another componet > 4th tab - Another componet On Mon, Jul 20, 2009 at 11:35 AM, Martin Makundi < martin.maku...@koodaripalvelut.com> w

Re: Tab panel child

2009-07-20 Thread Martin Makundi
Copy-paste the example from the web and replace the one panel with a grid. ** Martin 2009/7/20 Gerald Fernando : > yes i mean it.am debut to wicket.how can i achive it > please help me > my requirement is >  when i click first tab it should shows a Grid >> 2nd tab - panel >> 3rd tab - another com

Re: best or common practice for application plug-ins

2009-07-20 Thread Sam Stainsby
On Mon, 20 Jul 2009 10:25:17 +0200, Linda van der Pal wrote: > Seeing how it looks like you want to create your own CMS, you might want > to have a look at Hippo CMS. They've built it in Wicket AFAIK. I've seen Hippo, but my main aim is not to create a CMS. One of my goal applications is more to

Re: best or common practice for application plug-ins

2009-07-20 Thread Sam Stainsby
OK, so I am an sys admin running some sort of OSGI-based application and now I want to add your questionnaire service and any other modules that it depends on. I also want to occasionally check for version updates. I want these updates and dependencies to be downloaded and put in the correct pl

How to get DateField value

2009-07-20 Thread Ryan Burns
Hi i'm new to wicket, I wonder if any of yous can help me. I'm trying to get the date selected from DateField component when the date is changed. I've tried getConvertedInput() and getInput()but they just return null. Below is my code, I've striped it down to just display the date in the console to

how to strip wicket tags for particular component

2009-07-20 Thread Vladimir Kovalyuk
I'm trying to convert main menu into components to control visibility of items depending on the user logged in and the context. I use borders to wrap menu item into tags. The problem is that the rendered markup contains additional and tags. They breaks the menu and it is eventually displayed as

Re: best or common practice for application plug-ins

2009-07-20 Thread Olger Warnier
Hi Sam, How we do it with that service: We have a file listener class that checks if OSGI based jar files are put in a directory. If so, these are automatically deployed to the OSGI runtime by the BundleDeployer class. We miss a download / version updates part, but you could add that by d

org.apache.wicket.protocol.http.WebSession cannot be cast to org.apache.wicket.authentication.AuthenticatedWebSession

2009-07-20 Thread Denis Kandrov
Hi, All! I'm trying to set up testing for my JavaEE&Wicket Application but ran across this error message: org.apache.wicket.protocol.http.WebSession cannot be cast to org.apache.wicket.authentication.AuthenticatedWebSession I'm using JUnitEE for run my tests at Application Server. Also I found

Re: best or common practice for application plug-ins

2009-07-20 Thread Sam Stainsby
Thanks Olger, that gives me some ideas. I wonder if a maven could somehow be coerced to do the dependency/downloading part, perhaps with some new plugin. On Mon, 20 Jul 2009 13:39:10 +0200, Olger Warnier wrote: > Hi Sam, > > How we do it with that service: > > We have a file listener class t

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
You can get the model Date d = dateField.getModelObject(); Format it by using the SimpleDateFormat -- View this message in context: http://www.nabble.com/How-to-get-DateField-value-tp24567634p24568750.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: how to strip wicket tags for particular component

2009-07-20 Thread Mathias Nilsson
This may not be the best solution but it should work DateTextField dateField = new DateTextField("date", new Model(new Date())){ @Override protected void onBeforeRender() { Application.get()

Re: how to strip wicket tags for particular component

2009-07-20 Thread Vladimir K
For now I use the following workaround public class CleanBorder extends Border { private boolean savedStripWicketTags; public CleanBorder(String id) { super(id); setRenderBodyOnly(true); getBodyContainer().setRenderBodyOnly(true);

Re: how to strip wicket tags for particular component

2009-07-20 Thread Vladimir K
Mathias, I just posted right after your post :) Anyway thanks. The problem is that you can not restore origianal settings when the body of the border is being rendered. At lease it is difficult to figure out what workaround I could employ. Thankfully I haven't to care about that in my case so I

Re: How to get DateField value

2009-07-20 Thread Ryan Burns
Hi, Thanks for the reply. I've tried this too, but this also returns null. There is date in the textfield box of the datefield but for some reason it doen't get it Ryan On Mon, Jul 20, 2009 at 2:19 PM, Mathias Nilsson < wicket.program...@gmail.com> wrote: > > You can get the model > > Date d =

Re: passing a session to a wizard

2009-07-20 Thread Steve Olara
Hello All,   I have been trying to design functionality of a webapp using wizard.   I need to pass a object (Questionnaire) to the wizard page, the object contains a set of questions.   on passing the object, when I try to pick the set of questions using q.getqn() where q is the object, a null se

Re: how to strip wicket tags for particular component

2009-07-20 Thread Vladimir K
it seems that onAfterRender is not the appropriate place to restore settings ... :( Vladimir K wrote: > > Mathias, > > I just posted right after your post :) Anyway thanks. > > The problem is that you can not restore origianal settings when the body > of the border is being rendered. At lease

Re: how to strip wicket tags for particular component

2009-07-20 Thread Vladimir K
It is possible to override onRender method. It turned out that it is not final. @Override protected void onRender(MarkupStream markupStream) { Application.get().getMarkupSettings().setStripWicketTags(true); try { super.onRend

Re: best or common practice for application plug-ins

2009-07-20 Thread Ben Tilford
I think maven 3 is supposed to allow using OSGi bundles for versioning etc.. On Mon, Jul 20, 2009 at 8:12 AM, Sam Stainsby < s...@sustainablesoftware.com.au> wrote: > Thanks Olger, that gives me some ideas. I wonder if a maven could somehow > be coerced to do the dependency/downloading part, perh

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
The above code works for me. You know that the onchange method is only triggered when you click the textfield for focus and the click the webpage to lose focus have you put the field in a form? -- View this message in context: http://www.nabble.com/How-to-get-DateField-value-tp24567634p24570614

Re: how to strip wicket tags for particular component

2009-07-20 Thread Mathias Nilsson
What about @Override public void onComponentTag( ComponentTag tag){ tag.remove( "wicket:id" ); super.onComponentTag(tag); } -- View this message in context: http://www.nabble.com/how-to-s

Re: how to strip wicket tags for particular component

2009-07-20 Thread Erik van Oosten
Turning the 2 lines around might give better results. Regards, Erik. Mathias Nilsson wrote: What about @Override public void onComponentTag( ComponentTag tag){ tag.remove( "wicket:id" ); super.onComponentTag(tag);

Re: best or common practice for application plug-ins

2009-07-20 Thread Adrian Wiesmann
Hi Sam > I'm probably revealing my inexperience with J2EE environments in asking > this, but how do Wicket programmers typically handle application "add- > ons" (or "plug-ins" or "modules"). What I (we) did was to imitate what Eclipse does. Defining hooks and having plugins attach to these hooks

1.4 is ready for production?

2009-07-20 Thread Alessandro Vincelli
I know that 1.4 is RC, and RC means that is not ready for production ;-) But I'm using the 1.4 since January in some small projects without blocking problems? The issue opened in Jira are not blocking for me. Any suggestions? Is anybody already using 1.4 in production? Thanks in advance, Alessandro

Re: 1.4 is ready for production?

2009-07-20 Thread Igor Vaynberg
it is. it is even already built and available here: http://people.apache.org/~ivaynberg/wicket-1.4.0/ although we have not voted on it yet. waiting for some PR-related stuff to come together. -igor On Mon, Jul 20, 2009 at 8:32 AM, Alessandro Vincelli wrote: > I know that 1.4 is RC, and RC means

Re: 1.4 is ready for production?

2009-07-20 Thread Jeremy Thomerson
Yes - there are many users who have been using it since 1.4-rc1 in production. 1.4.0 final is built, waiting on a few things to get finished before calling vote on it. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 20, 2009 at 10:32 AM, Alessandro Vincelli wrote: > I know that

Re: passing a session to a wizard

2009-07-20 Thread Michael Sparer
sounds like a detached object. the interesting part would be where you got the object from. if you're using OpensessionInViewFilter (and therefore a session is during the whole request), it's likely that the object stays in the session between requests - you should use LoadableDetachableModels the

Fwd: QuickCrud

2009-07-20 Thread taha siddiqi
Hi, There are simple set of libraries I had thought of commenting properly and sharing with the community but because of being busy with a few projects I am unable to do that. I don't know when I will get the time to properly comment, but until then I would like to share this "as-is code"... I h

Error Message Not Getting Removed

2009-07-20 Thread jpalmer1026
I have a form that's using an AjaxSubmitLink to show / hide a panel. I have overriden the onError() method to add a feedbackPanel to the page to display any error messages that may exist. The problem I'm having is the error messages are remaining on the screen even after the problem is fixed.

Re: Error Message Not Getting Removed

2009-07-20 Thread Martin Makundi
In my understanding only EITHER onSubmit or onError is called. If you call error(xx) in onSubmit, you must refesh the feedback panel in the onSubmit-branch TOO (separately). ** Martin 2009/7/20 : > I have a form that's using an AjaxSubmitLink to show / hide a panel. I have > overriden the onErro

Re: Error Message Not Getting Removed

2009-07-20 Thread Mathias Nilsson
I don't see that you have added the feedback in the onSubmit method You should do @Override onsubmit( ){ target.addComponent( feedback ); } -- View this message in context: http://www.nabble.com/Error-Message-Not-Getting-Removed-tp24574168p24574336.html Sent from the Wicket - User maili

Re: 1.4 is ready for production?

2009-07-20 Thread Alessandro Vincelli
Nice! +1 ;-) Thank you, Alessandro 2009/7/20 Jeremy Thomerson : > Yes - there are many users who have been using it since 1.4-rc1 in > production.  1.4.0 final is built, waiting on a few things to get > finished before calling vote on it. > > -- > Jeremy Thomerson > http://www.wickettraining.com >

Re: How to get DateField value

2009-07-20 Thread Ryan Burns
Ok, i tried this. But i get the date the DateField was initialised with ie today 20/07/09. If i change text field to 10/07/09 i still get the 20/07/09. I can get it working with a normal submit button but when i try anything with ajax i get the problem stated. Can paste the code that you got this w

Re: Error Message Not Getting Removed

2009-07-20 Thread jpalmer1026
Whoops. My bad. Thanks! Mathias Nilsson wrote: > > I don't see that you have added the feedback in the onSubmit method > > You should do > > @Override > onsubmit( ){ > target.addComponent( feedback ); > } > -- View this message in context: http://www.nabble.com/Error-Message-Not-Ge

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
import java.util.Date; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior; import org.apache.wicket.extensions.markup.html.form.DateTextField; import org.apache.wicket.markup.html.WebPage; import org.apache.wicket.markup.html.for

Re: How to get DateField value

2009-07-20 Thread Ryan Burns
Yes, that does work for DateTextField. But i am using the DateField component which is a combination of DateTextField and DatePicker Ryan On Mon, Jul 20, 2009 at 8:25 PM, Mathias Nilsson < wicket.program...@gmail.com> wrote: > > > import java.util.Date; > > import org.apache.wicket.ajax.AjaxRequ

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
from wicket-extension or from another project? -- View this message in context: http://www.nabble.com/How-to-get-DateField-value-tp24567634p24575317.html Sent from the Wicket - User mailing list archive at Nabble.com. - To uns

Re: How to get DateField value

2009-07-20 Thread Ryan Burns
wicket-extension. This one, org.apache.wicket.extensions.yui.calendar.DateField; On Mon, Jul 20, 2009 at 8:45 PM, Mathias Nilsson < wicket.program...@gmail.com> wrote: > > from wicket-extension or from another project? > -- > View this message in context: > http://www.nabble.com/How-to-get-DateFi

Re: 1.4 is ready for production?

2009-07-20 Thread Marcin Palka
Hi, My team develops a system that's based on the 1.4 and during the development we haven't experienced any serious issues with prior-final builds of 1.4. System is currently being tested. We started development with rc1 and moved forward to every new release candidate version. Except for minor m

Re: 1.4 is ready for production?

2009-07-20 Thread Martin Makundi
Skip rc5 and rc6 ;) ** Martn 2009/7/20 Marcin Palka : > > Hi, > > My team develops a system that's based on the 1.4 and during the development > we haven't experienced any serious issues with prior-final builds of 1.4. > System is currently being tested. We started development with rc1 and moved

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
Ok this is wicket-datetime if I'm not misstaken. You must override the newDateTextField then import java.util.Date; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior; import org.apache.wicket.datetime.markup.html.form.DateText

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
Ok this is wicket-datetime if I'm not misstaken. You must override the newDateTextField then import java.util.Date; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior; import org.apache.wicket.datetime.markup.html.form.Dat

Custom Resource Loading

2009-07-20 Thread Mostafa Mohamed
Hi. I have 3 questions about resources. *question 1* I've tried everything i could to make to make this work, but i failed. it's probably something that has to do with the context + path that i pass to the folder constructor. i tried some relative paths, didn't work too. protected void int() { S

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
You can also override the datepicker if you would like -- View this message in context: http://www.nabble.com/How-to-get-DateField-value-tp24567634p24576032.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: How to get DateField value

2009-07-20 Thread Mathias Nilsson
Also, how does your markup look? You should use the DateField with a span or div. -- View this message in context: http://www.nabble.com/How-to-get-DateField-value-tp24567634p24576073.html Sent from the Wicket - User mailing list archive at Nabble.com. -

[work-around] UploadProgressBar

2009-07-20 Thread Mathias Nilsson
The UploadProgressBar works great in some browsers but looses responsiveness in safari on mac. when debugging this on mac it looks like the ajax requests hangs when a multipart is used. You will not receive a readystate 4 and no status 200 To get this to work you will have to use an Iframe to pos

Re: How to get DateField value

2009-07-20 Thread Ryan Burns
It's working now. Overriding the newDateTextField worked. Thanks for your help On Mon, Jul 20, 2009 at 9:31 PM, Mathias Nilsson < wicket.program...@gmail.com> wrote: > > Also, how does your markup look? You should use the DateField with a span > or > div. > -- > View this message in context: > ht

Re: 1.4 is ready for production?

2009-07-20 Thread Steamus
Yes. I use Wicket 1.4RC7 based site for production. It is easy multilingual club-site for selling horses and to provide information about club. Implementation looks easy from outside, but contains CMS possibilities for administrator: possibilities to add news article with picture (loaded to our da

Re: 1.4 is ready for production?

2009-07-20 Thread Martin Makundi
> I provide URL below, but please don’t treat it as advertising from my side. > It is just confirmation only - example of Wicket based site. > > http://www.sport-pferde-portal.de Yeah.. it does crash! Internal error Return to home page ** Martin >

Re: 1.4 is ready for production?

2009-07-20 Thread Major Péter
Well, I'm getting Internal Error on the homepage, so it doesn't look commercial at all. :) Peter 2009-07-20 22:17 keltezéssel, Steamus írta: Yes. I use Wicket 1.4RC7 based site for production. It is easy multilingual club-site for selling horses and to provide information about club. Implement

Re: 1.4 is ready for production?

2009-07-20 Thread Steamus
Sorry, I would be glad to see crash (just for the test Purposes), but for this moment it is work yet. -- View this message in context: http://www.nabble.com/1.4-is-ready-for-production--tp24572049p24577169.html Sent from the Wicket - User mailing list archive at Nabble.com. ---

Re: Custom Resource Loading

2009-07-20 Thread Mathias Nilsson
Wicket is customized to find the markup and properties in the same package as the javafile. I guess you are not using the default package and therefore you can use java packages. http://www.mkyong.com/wicket/how-do-change-the-html-file-location-wicket/ http://www.mkyong.com/wicket/how-do-change

Re: 1.4 is ready for production?

2009-07-20 Thread Martin Makundi
No. It crashes. Restart your browser and you will see. ** Martin 2009/7/20 Steamus : > > Sorry, I would be glad to see crash (just for the test Purposes), but for > this moment it is work yet. > -- > View this message in context: > http://www.nabble.com/1.4-is-ready-for-production--tp24572049p24

Re: 1.4 is ready for production?

2009-07-20 Thread Carl-Eric Menzel
On Tue, 21 Jul 2009 00:00:04 +0300 Martin Makundi wrote: > No. It crashes. Restart your browser and you will see. Works for me. Carl-Eric - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e

Re: 1.4 is ready for production?

2009-07-20 Thread Igor Vaynberg
+1 -igor On Mon, Jul 20, 2009 at 2:08 PM, Carl-Eric Menzel wrote: > On Tue, 21 Jul 2009 00:00:04 +0300 > Martin Makundi wrote: > >> No. It crashes. Restart your browser and you will see. > > Works for me. > > Carl-Eric > > - > T

Re: 1.4 is ready for production?

2009-07-20 Thread Martin Makundi
Crashes or me, Mozilla/5.0 (Windows; U; Windows NT 5.1; fi; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 ** Martin 2009/7/21 Carl-Eric Menzel : > On Tue, 21 Jul 2009 00:00:04 +0300 > Martin Makundi wrote: > >> No. It crashes. Restart your browser and you will see. > > Works for me. > > Carl-Eric

Re: Custom Resource Loading

2009-07-20 Thread sky.walker
I plan to keep my java and html files next to each other, I was just curious as to why this specific peace of code which is the 'wicket in action' way to load resources didn't work. my guess was that's there's something wrong with the path, however i'm not sure why. my project directory structure

Re: Custom Resource Loading

2009-07-20 Thread Mathias Nilsson
The resource folder is maven layout. maven.apache.org when building with the quickstart the maven uses this layout. You are not supposed to add you .properties and .html files here. This is for other properties and xml like spring, hibernate, peristance etc. -- View this message in context: h

Re: 1.4 is ready for production?

2009-07-20 Thread Steamus
I have 3 browsers to test. IE6, Fox(3.0.11), Opera (9.63). All systems work fine. Sorry. I know, it is possible to kill any site. For last half an hour it was just about 27 unique visiters and about 30-40 clicks. It is not critical. I tested with more 10 000 clicks during 3-4 minutes. 100 man si

Re: 1.4 is ready for production?

2009-07-20 Thread Major Péter
Crash for me too: Mozilla/5.0 (X11; U; Linux x86_64; hu-HU; rv:1.9.1) Gecko/20090630 Fedora/3.5-1.fc11 Firefox/3.5 Maybe something locale-related stuff isn't working. Log files could be helpful to debug this. Peter 2009-07-20 23:15 keltezéssel, Martin Makundi írta: Crashes or me, Mozilla/5.0

Re: How to LDM refreshed after submit?

2009-07-20 Thread Stefan Simik
I had similar problem last time: By debugging, I found some solution, that really works, but I am not sure, if it is elegant and the right wicket-way solution: 1. override onValidate method in form 2. call clearInput() method on all form components, that should refresh their model Mauro

Re: 1.4 is ready for production?

2009-07-20 Thread Steamus
M-m-m... May be it is some redirect problems? Try this: http://www.sport-pferde-portal.net/shglobal/home It is the same. I just cheked the site by using http://browsershots.org/ Truly, I am puzzled, I got message - The server at www.sport-pferde-portal.de sent a HTTP redirect. Your web addre

Re: 1.4 is ready for production?

2009-07-20 Thread Jeremy Thomerson
Works for me: version `NSS_3.10' not found -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 20, 2009 at 5:07 PM, Steamus wrote: > > M-m-m... > > May be it is some redirect problems? > > Try this: > > http://www.sport-pferde-portal.net/shglobal/home > > It is the same. > > I just c

Re: 1.4 is ready for production?

2009-07-20 Thread Jeremy Thomerson
Oops - sorry - pasted the wrong thing. It does work. I meant to send the URL - but it was just the original URL you sent. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 20, 2009 at 7:51 PM, Jeremy Thomerson wrote: > Works for me: > version `NSS_3.10' not found > > -- > Jeremy

Re: 1.4 is ready for production?

2009-07-20 Thread taha siddiqi
One of my projects has just gone into testing phase, I ported the project from 1.35 to 1.4rc7 and I faced no problems. Let us see how testing goes ... Wassalam Taha On Tue, Jul 21, 2009 at 6:22 AM, Jeremy Thomerson wrote: > Oops - sorry - pasted the wrong thing.  It does work.  I meant to send >

Re: 1.4 is ready for production?

2009-07-20 Thread Martin Makundi
Does not help for me. You do have logs ;) ? ** Martin 2009/7/21 Steamus : > > M-m-m... > > May be it is some redirect problems? > > Try this: > > http://www.sport-pferde-portal.net/shglobal/home > > It is the same. > > I just cheked the site by using http://browsershots.org/ > > Truly, I am puzzl

Re: Tab panel child

2009-07-20 Thread Gerald Fernando
Hi martin, this is my code. now i have to insert separate page for each tab. these pages includes one for data grid and one page for ajax example ane page for component. shall we insert a page in to the tab?is it possible?if so tell me how to do it. i used setResponsePage();but it shows error that

Re: How to Hidden/Disabled Wicket tree with implementation wicket security (Help)

2009-07-20 Thread Rizal Indra
Hi, i have tried to disable/hide component like buttons (as Warren example) with success. but how to Wicket tree not populateTreeItem( hide) because my Class Page not include in my hive file? Does anyone can do it? or my way that call all menu from db for all principals then lets wicket securit

Re: Tab panel child

2009-07-20 Thread Martin Makundi
Hi! No, not page into tab. Just panel. Here TabPanel1...3 are your grid, etc. content panels. Into the content panel you put the grid or whatever you want. ** Martin 2009/7/21 Gerald Fernando : > Hi martin, > this is my code. > now i have to insert separate page for each tab. > these pages inclu

Re: 1.4 is ready for production?

2009-07-20 Thread Per Lundholm
The site works for me, running FF 3.0.11 on Ubuntu. My browser is currently set to prefer Spanish but that does not apply to all texts, some are still English. Guess that was expected. /Per On Tue, Jul 21, 2009 at 6:22 AM, Martin Makundi < martin.maku...@koodaripalvelut.com> wrote: > Does not h

Re: memory leak on FeedbackMessages??

2009-07-20 Thread Tsutomu YANO
I created a JIRA: https://issues.apache.org/jira/browse/WICKET-2384 We finally found out the reason of this problem. This was a bug of Wicket (on FeedbackPanel class). I wrote a fixed code on the JIRA. I hope that the solution will be included in next release. This is big bug for me.

Re: memory leak on FeedbackMessages??

2009-07-20 Thread Tsutomu YANO
I created a JIRA: https://issues.apache.org/jira/browse/WICKET-2384 We finally found out the reason of this problem. This was a bug of Wicket (on FeedbackPanel class). I wrote a fixed code on the JIRA. I hope that the solution will be included in next release. This is big bug for me. Tha