Re: Question With Detachable Models

2007-09-15 Thread carloc
: either use the memory and/or bandwidth OR be prepared to pay the price of loading the object from storage. carloc wrote: Hi, I would like to ask this. Are my objects still being stored in the session when I use this kind of query. I don't requery the objects using a detachable model

Wicket Dialogs

2007-09-24 Thread carloc
Is there any component in wicket similar to this component? Something like wicket dialogs http://developer.yahoo.com/yui/examples/container/panel_clean.html -- View this message in context: http://www.nabble.com/Wicket-Dialogs-tf4507886.html#a12856206 Sent from the Wicket - User mailing list

Applet Question

2007-09-27 Thread carloc
Hi Everyone, I'm trying to load an applet in wicket. The code looks like this applet code=uk.co.mmscomputing.application.imageviewer.MainApp.class archive=uk.co.mmscomputing.application.imageviewer.jar width=100% height=100% /applet If I paste this code in my index.html page which is not run

Getting Previous Page (Help)

2009-01-11 Thread carloc
Hi, We have this application and each page has a wizard like functionality in which you filll up this page first, and then go to the next page. Each page I have has about 50k used in memory according to the RequestLogger. The current solution I have right now to go to previous page is to pass

Re: Getting Previous Page (Help)

2009-01-11 Thread carloc
to retrieve the previous page? Seems to work since session size remained at 60k Before it would double in the 2nd page. carloc wrote: Hi, We have this application and each page has a wizard like functionality in which you filll up this page first, and then go to the next page. Each page I

sessionsize of requestlogger

2009-01-12 Thread carloc
Hi Everyone, RequestLogger - time=103,event=Interface[target:AjaxPagingNavigationLink(userListForm:userGroupContainer:userGroupCheckGroup:ajaxPagingNavigation:navigation:9:pageLink), page: com.ccti.base.web.usergroup.VedUserGroupPage(2), interface:

Re: sessionsize of requestlogger

2009-01-12 Thread carloc
As an added observation, sessionsize of deployment mode is much lower than in development mode. Is there any reason to this? carloc wrote: Hi Everyone, RequestLogger - time=103,event=Interface[target:AjaxPagingNavigationLink

Re: sessionsize of requestlogger

2009-01-12 Thread carloc
= firstLevelMenu /li /ul /div /div /wicket:panel /body /html carloc wrote: Hi Everyone, RequestLogger

Wicket Problems On Ubuntu

2009-03-17 Thread carloc
-management_war.ear/courier-management.war/WEB-INF/classes/com/ccti/carnelian/web/login/LoginPage.html sun.io.MalformedInputException Carloc -- View this message in context: http://www.nabble.com/Wicket-Problems-On-Ubuntu-tp22554217p22554217.html Sent from the Wicket - User mailing list archive

SessionStore and Detachable Models

2008-09-18 Thread carloc
hi everyone, if i use the secondlevelcachesessionstore wicket writes session state into the disk instead of the httpsession right? It is also the one that is used by default. so is it safe for me to not use abstractdetachablemodels and just use compoundpropertymodels since memory is

Conversion Error Messages

2007-11-22 Thread carloc
Hi Guys, I would like to ask help on something. I have a text box which accepts the field which is supposed to be a double. everytime that a user enters a field that isn't a double the error message 'Field is not a valid double' appears. However I want it to display a different error message

Re: Conversion Error Messages

2007-11-22 Thread carloc
, such as Long or ZipCode). Martijn On Nov 22, 2007 10:18 AM, carloc [EMAIL PROTECTED] wrote: Hi Guys, I would like to ask help on something. I have a text box which accepts the field which is supposed to be a double. everytime that a user enters a field that isn't a double the error

Page Store And Clustering

2008-02-09 Thread carloc
Hi, Please correct me if i'm wrong, i've read that there are three types of pages stores namely HttpSession Database and DiskStore What type of page store should I use if I am to design my application to be ready for clustering? Will disk store be still safe to use? Thanks Carlo -- View

Re: Page Store And Clustering

2008-02-10 Thread carloc
session store has multiply ways to store the pages throug the IPageStore implementation For that we have current DiskPageStore as the default and that one is also clusterable. But one could make another one (for a database if needed) johan On Feb 9, 2008 11:49 AM, carloc [EMAIL

Harnessing Data From Components

2008-02-12 Thread carloc
hi everyone, I would like to ask how I could actually get data from the different components in the wicket examples... For example in the YUI selection or in the RatingPanel... What will my code look like if I have a submit button and I want to know the rating? (e.g. how many stars were

Wicket And EasyMock

2008-02-24 Thread carloc
Hi I'm trying to use wicketTester and FormTester together with easymock. I seem to be getting a lot of notserializableexceptions and my form won't submit properly. Is there anything that I should do? ERROR - Objects- Error serializing object class com.ccti.bo.login.LoginPage

Re: Wicket And EasyMock

2008-02-24 Thread carloc
Actually wickettester works fine with a normal button but doesn't work with an indicating ajax button. -- View this message in context: http://www.nabble.com/Wicket-And-EasyMock-tp15666876p15666962.html Sent from the Wicket - User mailing list archive at Nabble.com.

ReloadingWicketFilter

2008-02-27 Thread carloc
Hi everyone, I just would like to ask how I can use the reloadingwicketfilter. I get an exception that the markup file cannot be located everytime i use the reloading wicketfilter thanks -- View this message in context: http://www.nabble.com/ReloadingWicketFilter-tp15719950p15719950.html

Wicket Tester And Code Output

2008-02-27 Thread carloc
Hi, I'm using Wicket Tester to render my pages, is there a way by which I can see the code that is rendered? For example I have, wicketTester.startPage(new HomePage()); assertRenderedPage(HomePage.class); I want to be able to see the html contents being printed in the console.. like html

Re: ReloadingWicketFilter

2008-02-27 Thread carloc
THanks, I'll try again but I'm getting exceptions maybe I didn't do it correctly yet. Carlo igor.vaynberg wrote: it has examples in its javadoc afaik -igor On Wed, Feb 27, 2008 at 10:40 AM, carloc [EMAIL PROTECTED] wrote: Hi everyone, I just would like to ask how I can use

Markup Reloading

2008-03-01 Thread carloc
Hi Guys, I've noticed that everytime I want to change something in my markup I would need to restart the server as the changes don't take effect immediately. Is there anything I can do to avoid this behavior? I'm trying to adjust my css and i'm spending more time restarting the server...

Re: Markup Reloading

2008-03-01 Thread carloc
AM, carloc [EMAIL PROTECTED] wrote: Hi Guys, I've noticed that everytime I want to change something in my markup I would need to restart the server as the changes don't take effect immediately. Is there anything I can do to avoid this behavior? I'm trying to adjust my css and i'm

Re: Markup Reloading

2008-03-02 Thread carloc
for you then something is not properly configured, eg when you save your .css file your ide does not copy it out of src folder into classes folder... -igor On Sat, Mar 1, 2008 at 9:57 AM, carloc [EMAIL PROTECTED] wrote: Hi Guys, I've noticed that everytime I want to change something

wicket Jquery Weird Behavior

2008-03-02 Thread carloc
Hi guys I've just found this out... When I use the $ function of jquery directly within my page, it's causing my page to be cosntructed twice. I included something like $(function() { $('#leftFrame').css('z-index', 200); }); It's causing my page to reload twice. I was trying to find out

Wicket Tester And OpenSessionInView

2008-03-02 Thread carloc
Hi , I seem to be getting this Exception when I run integration tests using WicketTester... I use lazy objects through the opensessioninviewfilter. How can I get WicketTester to use this filter? Is there anyway that this could be resolved? org.hibernate.LazyInitializationException: could not

Wicket, Hibernate and Models

2008-03-13 Thread carloc
Hi everyone, I have been reading wicket in action recently and I have seen pitfalls of hibernate section. I was wondering about the stuff about hibernate and memory leaks due to hibernate proxy objects maintaining a reference to the session with them Am I doing this wrong then? @SpringBean

Re: Wicket, Hibernate and Models

2008-03-13 Thread carloc
What should I use when I am accessing hibernate? Should I use a ListView or should I use a refreshing view?\ In the api it says to use refreshingview instead of using listview when using database collections what is better to use? carloc wrote: Hi everyone, I have been reading wicket

Jquery Attached Behaviors Disappearing During Ajax Calls

2008-04-30 Thread carloc
Hi, I'm using JQuery together with Wicket. I have this problem that whenever I update a component through ajax, the behaviors I attached using jquery disappear already. For example I have a textbox which has this $('textbox').click(function() { alert('hello') }) This would work while the