Re: Why isn't my stateless form recreated from page parameters automatically?

2011-08-06 Thread Joe Fawzy
Hi it seems that item.add(new TextField("itemId", new PropertyModel(item.**getModel(), "itemId"))); should be item.add(new TextField("itemId", new PropertyModel(item.**getModelObject(), "itemId"))); Joe On Mon, Aug 1, 2011 at 6:35 PM, Mike Mander wrote: > Hi, > > i would like to build up a s

Fragment caching???

2011-08-06 Thread Joe Fawzy
Hi is there something equivelant to fragment caching in wicket? I mean , is there any way to cache the generated markup of a component, and on subsequent requests it just render this markup string? if so, how one can store these fragments in external store? how that can be configured or plugged in

Re: serialization problem with spring

2011-07-31 Thread Joe Fawzy
Joe On Mon, Aug 1, 2011 at 8:10 AM, Joe Fawzy wrote: > Hi > > i am living on the edge ,using wicket 1.5RC5.1 (the latest) > and also using the newly released Spring data-jpa project for data access > > i do not use or reference PersistenceExceptionTranslationInterceptor >

Re: serialization problem with spring

2011-07-31 Thread Joe Fawzy
ence to it? If so, that'll be a problem since Wicket doesn't know to > proxy that one. > > Dan > > On Sun, Jul 31, 2011 at 5:08 PM, Joe Fawzy wrote: > > > Hi > > i have a serialization problem with spring > > My CreatePage class looks like:- >

serialization problem with spring

2011-07-31 Thread Joe Fawzy
Hi i have a serialization problem with spring My CreatePage class looks like:- public class CreatePage extends WebPage{ @SpringBean AccountManager accountManager; } as i am using @SpringBean , it should handle creating a serializable proxy for me BUT i got the following exception ERRO

ComponentInitializationListener and the new 1.5 initialization

2011-03-18 Thread Joe Fawzy
Hi does ComponentInitializationListener now have access to the markup as the component.onInitialize() Thanks Joe

Re: Page#onInitialize is final in 1.5RC2 ?

2011-03-06 Thread Joe Fawzy
if Page#onInitialize will remain final can i use onMarkupAttached instead for the same purpose? Thanks Joe On Mon, Mar 7, 2011 at 12:40 AM, Joe Fawzy wrote: > The jira issue said it has been fixed since RC1 and as i can see , it is > final in RC2 > does that men that Page#onInitia

Re: Page#onInitialize is final in 1.5RC2 ?

2011-03-06 Thread Joe Fawzy
ailing list. Search in Nabble. > > On Sat, Mar 5, 2011 at 7:00 AM, Joe Fawzy wrote: > > > Hi > > Page#onInitialize is final in 1.5RC2 > > i think this method ment to be overridden? > > am i missing something? > > Thanks > > >

Page#onInitialize is final in 1.5RC2 ?

2011-03-04 Thread Joe Fawzy
Hi Page#onInitialize is final in 1.5RC2 i think this method ment to be overridden? am i missing something? Thanks

Page.add is final in 1.5 RC2

2011-03-02 Thread Joe Fawzy
Hi Container.add is not final why page.add and page.onInitialize is final methods thanks

Re: [announce] Wicket Security 1.4 released!

2010-05-31 Thread Joe Fawzy
Hi i heard a lot about this project but have no opportunity to play with it i think a (detailed) tutorial or a getting start guide is required(for someone like me) to begin using this any pointers? thanks Joe On Mon, May 31, 2010 at 5:07 PM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote:

Re: [PROPOSAL] Application.runAs() Method...

2010-05-26 Thread Joe Fawzy
Hi Please make this configurable(can be disabled) as i am on appengine, they does not allow threads thanks Joe On Tue, May 25, 2010 at 4:34 PM, James Carman wrote: > Sorry, subject should be wrap() method, not runAs(). > > On Tue, May 25, 2010 at 9:33 AM, James Carman > wrote: > > I've been thin

Re: Another Wicket Site

2010-05-20 Thread Joe Fawzy
lovely , needs some tweeks for google chrome joe On Wed, May 19, 2010 at 8:36 PM, chinedubond wrote: > nice love seeing Nigerians doing great things > keep it up . > > On Tue, May 18, 2010 at 10:55 PM, Ajayi Yinka > wrote: > > No doubt of a nicer alpha version. Keep it up. > > > > On Tue, May 1

Re: adding behaviours

2010-05-20 Thread Joe Fawzy
hey, what is the prefered approach? thanks joe On Wed, May 19, 2010 at 7:12 AM, Joe Fawzy wrote: > Hi > i have a large number of components in a page that i have to add the same > behaviour > should i use the same instance for all or instansiate one for every > component(t

adding behaviours

2010-05-18 Thread Joe Fawzy
Hi i have a large number of components in a page that i have to add the same behaviour should i use the same instance for all or instansiate one for every component(that's what i am currently doing); thanks Joe

Re: efficient resource downloading

2010-05-10 Thread Joe Fawzy
gt; -igor > > On Sun, May 9, 2010 at 6:37 PM, Joe Fawzy wrote: > > Hi > > i want to know if this is an efficient way to download some files > > > > i want my users to be able to download certain files just to registerd > users > > only so i can put that logic i

efficient resource downloading

2010-05-09 Thread Joe Fawzy
Hi i want to know if this is an efficient way to download some files i want my users to be able to download certain files just to registerd users only so i can put that logic in the page constructor but is this efficient way to do this as this may be called thausands of times per hour (the files

about serialVersionUID in all components

2010-05-08 Thread Joe Fawzy
Hi all what are the side effects of setting serialVersionUID on all page classes and components private static final long serialVersionUID = 1L; i am developing an application which will be deployed on appengine appengine handle sessions by storing them in the memcache and data store as there is

change or replace css file on page reload

2010-05-04 Thread Joe Fawzy
Hi all i was wondering how could i change a css file on every page reload i thought of using header contribution in onBeforeRender() , but it seams to add the new the new css file what i need is to replace a certain css on every render of a certain page actually i can dynamically generate the css

Re: posting form outside wicket

2010-05-02 Thread Joe Fawzy
application. Wicket's > not > built for that part. HttpClient is. > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Sun, May 2, 2010 at 5:19 PM, Joe Fawzy wrote: > > > Hi dear > > thanks for the prompt reply > > aren&#x

Re: posting form outside wicket

2010-05-02 Thread Joe Fawzy
> use commons http client to issue an http post to the external server > > -igor > > > On Sun, May 2, 2010 at 3:10 PM, Joe Fawzy wrote: > > Hi > > i have a form that i want to post its data to a page outside wicket , > > actually on other server ,done in ruby > >

posting form outside wicket

2010-05-02 Thread Joe Fawzy
Hi i have a form that i want to post its data to a page outside wicket , actually on other server ,done in ruby i wanna make use of wicket form handling,model binding and validation... etc. and when i click submit , the data sent to the other page using a post thanks in advance Joe

Re: GAE serialization issues

2010-05-02 Thread Joe Fawzy
Hi dear thanks for the reply i 'm in the first steps of application deployment on appengine with no problems so far with my manual testing and with jmeter if u have any tips or hints , that will be greatly appreciated Thanks Joe On Thu, Apr 29, 2010 at 5:30 PM, jbrookover wrote: > > I can only s

Re: GAE serialization issues

2010-04-29 Thread Joe Fawzy
Hi Any ideas? please i need these info asap ,i appreciate your help thanks Joe On Wed, Apr 28, 2010 at 1:45 AM, Joe Fawzy wrote: > Hi everybody > i am developing an application on the GAE/J platform using wicket > as i read through this list ,it seems that it is not a recommended >

Re: using selenium

2010-04-28 Thread Joe Fawzy
Hi any tutorials, how to,or best practice? thanks Joe On Wed, Apr 28, 2010 at 4:15 AM, Jeremy Thomerson wrote: > yes - the id path > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Tue, Apr 27, 2010 at 8:00 PM, Joe Fawzy wrote: > > > Hi

Re: using selenium

2010-04-27 Thread Joe Fawzy
ode) > > > Jeremy Thomerson > http://www.wickettraining.com > -- sent from a wireless device > > > -Original Message- > From: Joe Fawzy > Sent: Tuesday, April 27, 2010 6:13 PM > To: users@wicket.apache.org > Subject: using selenium > > Hi all > i am b

GAE serialization issues

2010-04-27 Thread Joe Fawzy
Hi everybody i am developing an application on the GAE/J platform using wicket as i read through this list ,it seems that it is not a recommended combination due to some issues , specially the serialization issue BUT i have to deploy on appengine, so what is there any recommendations? OK, the real

using selenium

2010-04-27 Thread Joe Fawzy
Hi all i am building an application which use ajax heavily so i have to use component.setOutputMarkupId(true) this generate unique dom id for the components which changes every time i load the same page when using selenium , specially with its Firefox ide , it depends mainly on the id attribute val

Re: YUI 3 anyone?

2010-04-27 Thread Joe Fawzy
Hi i hope the dev team to consider jQuery , it seams it is the standard now , used by all the big companies , even microsoft and although YUI is great, Yahoo has its own problem these days and we cannot consider the commited to the lib, they dropped support for many of their products and abandond m

Re: Asynchronous DataStore queries on GAE with Twig-persist and other DataStore related problems

2010-04-27 Thread Joe Fawzy
Hi dear Begining from GAE sdk 1.3.2 , there is query cursors and you can have more than 1000 result On Mon, Apr 26, 2010 at 11:43 PM, Piotr Tarsa wrote: > Hello, > > I want to use Wicket with GAE and exploit all GAE features but some > problems > arise. > > 1. I'm looking for a good solution for

Re: Spring ROO & wicket

2009-06-21 Thread Joe Fawzy
ols... therefore there should be no problems creating > addons for wicket or other web frameworks. > > Alex Objelean > > > igor.vaynberg wrote: > > > > how customizable is it? eg is it possible to write a plugin that would > > generate wicket code instead of springmvc?

Re: Spring ROO & wicket

2009-06-20 Thread Joe Fawzy
Hi deari think possibilities for integration is limited for the following reasons: ROO is using spring MVC for the web tier ROO utilize the REST pattern which is stateless by default while wicket strength is its ststeful nature ROO depends heavily on aspectj and spring tools if u use spring tools

Re: File upload without writing to temp file (on Google App Engine)

2009-06-20 Thread Joe Fawzy
Hi split it into small chunks and store each as a blob in datastore entity Joe On Sat, Jun 20, 2009 at 1:44 PM, Dolejs Vlastimil wrote: > Hi, > I´m trying write wicket application for Google App Engine. > App Engine has some restrictions, one of them is, that you can´t work with > filesystem. >

Re: Conversation scope in wicket

2009-06-19 Thread Joe Fawzy
would > write > your own? > > cheers, uwe. > > > On Thu, Jun 18, 2009 at 8:05 PM, James Carman > wrote: > > > JSR-299 is somewhat of a moving target right now, so it's hard to stay > > up-to-date with it. I'm mainly working with the OpenWebBeans f

Re: Conversation scope in wicket

2009-06-18 Thread Joe Fawzy
do you mean pmap.getName() instead of pmap.getId() as i cannot find a public getId() in ipagemap thanks Joe > > > -igor > > On Wed, Jun 17, 2009 at 10:29 AM, Joe Fawzy wrote: > > Hi alli need to implement something like a conversation scope in wicket > > i know that wicket

Re: Conversation scope in wicket

2009-06-18 Thread Joe Fawzy
Hi all On Thu, Jun 18, 2009 at 7:44 AM, James Carman wrote: > On Thu, Jun 18, 2009 at 12:38 AM, Igor Vaynberg > wrote: > > > > you are free to implement this as an open source addition to wicket. > > there is wicketstuff or googlecode or sf.net where you can host it. > > > > wicket is a ui frame

Re: Conversation scope in wicket

2009-06-18 Thread Joe Fawzy
> > -igor > > On Wed, Jun 17, 2009 at 9:36 PM, Joe Fawzy wrote: > > Hiyou mean: injecting webbeans conversation component in wicket component > at > > construction time > > this is only what we can achieve with webbeans, as wicket component > cannot > >

Re: Conversation scope in wicket

2009-06-17 Thread Joe Fawzy
18, 2009 at 12:08 AM, Joe Fawzy wrote: > > > Hican this functionality added to the standard wicket? > > actually much of seam popularity came from supporting conversation > > scope..., > > so i think that adding explicit wicket support will have momentum > > i th

Re: Conversation scope in wicket

2009-06-17 Thread Joe Fawzy
009 at 11:59 AM, Joe Fawzy wrote: > > thanks dearwill wicket continue to support pageMap beyond 1.4 or it is > now a > > deprecated feature? > > thanks > > Joe > > > > On Wed, Jun 17, 2009 at 9:56 PM, Igor Vaynberg >wrote: > > > >> if the scop

Re: Conversation scope in wicket

2009-06-17 Thread Joe Fawzy
, 2009 at 11:45 AM, Joe Fawzy wrote: > > Hi dearthanks for the reply and for the code snippet > > But, do u think that using pageMap is reliable or what > > i mean , is using pageMap is a good solution or just a hack, work around > > thanks > > Joe > > >

Re: Conversation scope in wicket

2009-06-17 Thread Joe Fawzy
son { > private map> coversations; > > public map getconversation(ipagemap pmap) { >return conversations.get(pmap.getid()); > } > } > > -igor > > On Wed, Jun 17, 2009 at 10:29 AM, Joe Fawzy wrote: > > Hi alli need to implement something like a conversation

Conversation scope in wicket

2009-06-17 Thread Joe Fawzy
Hi alli need to implement something like a conversation scope in wicket i know that wicket is stateful by default and i can pass object o from page A -> page B But if Object o in page A which -> page B -> page C -> page D -> page E and i need Object o in page E ,that will be very tedious to pass o

Re: status of the PageMap

2009-06-16 Thread Joe Fawzy
3 when we > started saving to disk. > > johan > > > > On Tue, Jun 16, 2009 at 20:03, Joe Fawzy wrote: > > > Hi alli was wondering , what is the status of the pageMap? > > i saw in the wiki some articles talking about it will be deprecated, so > is > >

status of the PageMap

2009-06-16 Thread Joe Fawzy
Hi alli was wondering , what is the status of the pageMap? i saw in the wiki some articles talking about it will be deprecated, so is that true? i can see it in the 1.4 docs, is that for backward compatability or it still a essential part of the platform? How can i plug my own custom subclass of Pa

Re: IRequestTarget not serializable

2009-05-22 Thread Joe Fawzy
hi dearu have to process the target during its lifecycle time and store that result into something serializable for future use so u have to make the decision during the first request where the request target is valid not the second joe On Fri, May 22, 2009 at 4:34 PM, Juan G. Arias wrote: > I ha

Re: fragment markup resolution

2009-05-22 Thread Joe Fawzy
; > https://wicketopia.svn.sourceforge.net/svnroot/wicketopia/trunk/wicketopia/src/main/java/org/wicketopia/component/editor/FormComponentEditorPanel.java > > > On Fri, May 22, 2009 at 7:07 AM, Joe Fawzy wrote: > > hi dearthanks for ur reply > > actually i donot often use the wi

Re: Ajax appends to a Table

2009-05-22 Thread Joe Fawzy
hi dearwicket ajax support is designed and optimised for **updating** or replacing existing components not appending actually u will find appending table raw a buggy feature in IE i use a work around ,by adding several invisible rows then upon need i update them one by one Waiting for a better app

Re: fragment markup resolution

2009-05-22 Thread Joe Fawzy
be found in the parent class' markup > file. You don't need to duplicate the fragment definitions if you're > using markup inheritance. > > On Fri, May 22, 2009 at 12:38 AM, Joe Fawzy wrote: > > hiactually i am making a framework over wicket in which i am providin

Forms and autoAdd

2009-05-22 Thread Joe Fawzy
hi allcan i use autoAdd() to add FormComponents to a form and expect the form to behave normally and all its lifecycle get executed normally, including model binding and error check i know taht components added via autoAdd() didn't serialized or persisted between requests , so how this affect form

Re: fragment markup resolution

2009-05-21 Thread Joe Fawzy
hiactually i am making a framework over wicket in which i am providing a default ui in the base class , which can be customized by overriding in subclass in this case , when i subclass , i have to duplicate all the fragments markup ,instead of only what i need thanks joe On Thu, May 21, 2009 at 5:

fragment markup resolution

2009-05-20 Thread Joe Fawzy
hi alli have several pages which have a lot of fragments , this works fine when i subclassed this page class , i may change only one fragment or even no one at all but override a method, yet i have to duplicate all the markup for all the fragments even if they are just a clones of those in the bse