@onevent anotation

2008-09-10 Thread Natia Gdzelishvili
Hello, I want to know what values can be assigned to @OnEvent(value=???, component="somecomponent") i kwon only "selected" and "submit"

Re: T5.0.14 BeanEditForm

2008-09-04 Thread Natia Gdzelishvili
Than you... On Thu, Sep 4, 2008 at 4:18 PM, Thiago H. de Paula Figueiredo < [EMAIL PROTECTED]> wrote: > Em Thu, 04 Sep 2008 09:15:25 -0300, Natia Gdzelishvili < > [EMAIL PROTECTED]> escreveu: > > on my page I have >> >> but id is still on the edit form,

T5.0.14 BeanEditForm

2008-09-04 Thread Natia Gdzelishvili
on my page I have but id is still on the edit form, how can i remove id from edit form?

Re: Problem with aso

2008-09-04 Thread Natia Gdzelishvili
i've solved it, thank you all for helping On Wed, Sep 3, 2008 at 8:46 PM, Marcus <[EMAIL PROTECTED]> wrote: > Hi Natia, > just correcting: > > _visit.setMyLoginId(u.getUserName()); > > and check Jonathan's tip. (old Tapestry libraries in your classpath.) > > > Marcus >

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
yes i've tried many times On Wed, Sep 3, 2008 at 5:09 PM, Geoff Callender < [EMAIL PROTECTED]> wrote: > Crazy thought - in your old project, if you're using Eclipse, have you > tried Project > Clean... ? > > > On 03/09/2008, at 11:05 PM, Natia Gdzelishvili wrot

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
no I'm not tapestry 4 user I'm new in tapestry i thins there is some problem with my project, i've make new project anad tested aso and it is working, I'll try to find out what it is thank you On Wed, Sep 3, 2008 at 4:59 PM, Geoff Callender < [EMAIL PROTECTED]> wrote: > Yeah, old habits die hard

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
st the whole Login class - > all of it. > > > On 03/09/2008, at 10:13 PM, Natia Gdzelishvili wrote: > > public class Visit { >> // The logged in user >> private boolean _loggedIn = false; >> private String _myLoginId = null; >> >>

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
) { nextPage = Login.class; e.printStackTrace(); } return nextPage; } On Wed, Sep 3, 2008 at 4:06 PM, Carl Crowder <[EMAIL PROTECTED]> wrote: > Is this actually a compilation error? > > Natia Gdzelishvili wrote: > > in version 5.0.9 it is working &

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
>> private User currUser ; >>> private boolean userExists ; >>> I dont think T5 will link userExists and currUser, currUser should be >>> named user, or userExists currUserExists (please correct me if I'm wrong). >>> That said, what do you mean "I

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
> > 2. Declare the ASO like this: > > @ApplicationState(created=false) > private User currUser; > > assign the field like this: > > currUser = u; > > > Natia Gdzelishvili wrote: > >> I've tried to do this: >> currUser=new User(); >> and the

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
ok, but why I can not make assignment? On Wed, Sep 3, 2008 at 2:53 PM, Sven Homburg <[EMAIL PROTECTED]>wrote: > the aso created internal by tapestry > you should not create the object by youself > > aso should used as container > > 2008/9/3 Natia Gdzelishvili <[EMAI

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
I've tried to do this: currUser=new User(); and then set some values but it does not work... On Wed, Sep 3, 2008 at 2:26 PM, Natia Gdzelishvili <[EMAIL PROTECTED]>wrote: > I'm not using userExists, > in tapestry 5.0.9 everything was working, i was doing the same > > &

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
f I'm wrong). >> >> That said, what do you mean "I cant access currUser", do you mean that the >> ASO is null in other classes that want to read it ? Or do you mean that >> userExists is always false (which is normal, see above). >> >> José >>

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
no assignment cant be done currUser = u; // "currUser cannot be resolved" when i;m inspecting currUser On Wed, Sep 3, 2008 at 1:02 PM, Hugo Palma <[EMAIL PROTECTED]> wrote: > When you say that you can't access currUser what exactly does that mean ? > That it&

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
no On Wed, Sep 3, 2008 at 12:52 PM, Sven Homburg <[EMAIL PROTECTED]>wrote: > any exception stack ? > > 2008/9/3 Natia Gdzelishvili <[EMAIL PROTECTED]> > > > I'm using tapestry 5.0.14 ,i vahe problem with aso, my code is: > > > > public class Login {

Re: Problem with aso

2008-09-03 Thread Natia Gdzelishvili
can anyone help me, what I'm doing wrong... On Wed, Sep 3, 2008 at 11:06 AM, Natia Gdzelishvili <[EMAIL PROTECTED] > wrote: > I'm using tapestry 5.0.14 ,i vahe problem with aso, my code is: > > public class Login { > private String username; > private

Re: inject services into dispatcher

2008-09-03 Thread Natia Gdzelishvili
StateManager to check ASOs for the > current user request. Essentially you must instantiate your service with > the other service as a constructor argument, or via setter injection in > a service builder method. > > chris > > Natia Gdzelishvili wrote: > > i have read this but

Problem with aso

2008-09-03 Thread Natia Gdzelishvili
I'm using tapestry 5.0.14 ,i vahe problem with aso, my code is: public class Login { private String username; private String password; @Inject private IBusinessServicesLocator _businessServicesLocator; @ApplicationState private User currUser; private boolean userExists;

Re: inject services into dispatcher

2008-09-02 Thread Natia Gdzelishvili
try5HowToCreateADispatcher > http://wiki.apache.org/tapestry/Tapestry5HowToCreateADispatcher2 > > They answer both of these questions. > > sinerely, > chris > > Natia Gdzelishvili wrote: > > hello, > > i have service BusinessServicesLocator, and AccessController dispa

inject services into dispatcher

2008-09-02 Thread Natia Gdzelishvili
hello, i have service BusinessServicesLocator, and AccessController dispatcher. I want to inject my service unto dispatcher how can i do this? and also i want to know how can i access application state object from dispatcher thank in advance

Re: T5+EJB3

2008-08-26 Thread Natia Gdzelishvili
I've found some thing thanks On Tue, Aug 26, 2008 at 12:47 PM, Natia Gdzelishvili < [EMAIL PROTECTED]> wrote: > can you give me an example of integration t5 ejb, in jumpstart i could not > found > > On Tue, Aug 26, 2008 at 12:36 PM, Kristian Marinkovic < > [EMAI

Re: T5+EJB3

2008-08-26 Thread Natia Gdzelishvili
umpstart/home.html > for a EJB integration > > g, > kris > > > > > "Natia Gdzelishvili" <[EMAIL PROTECTED]> > 26.08.2008 10:31 > Bitte antworten an > "Tapestry users" > > > An > "Tapestry users" > Kop

Re: T5+EJB3

2008-08-26 Thread Natia Gdzelishvili
can anyone help me... On Mon, Aug 25, 2008 at 5:00 PM, Natia Gdzelishvili <[EMAIL PROTECTED] > wrote: > Hello > I have a stateful session bean > UserCreatorBean which implements UserCreatorLocale > on a tapestry page when submit is done I want to call UserLocaleBeans

T5+EJB3

2008-08-25 Thread Natia Gdzelishvili
Hello I have a stateful session bean UserCreatorBean which implements UserCreatorLocale on a tapestry page when submit is done I want to call UserLocaleBeans's some method, I am injecting bean with @EJB anotation but it is not injected (null pointer exception when invoking bean's method). How can

Re: T5:calendar component problem

2008-04-11 Thread Natia Gdzelishvili
me in both browsers (FF2 & IE7) > > 2008/4/11, Natia Gdzelishvili <[EMAIL PROTECTED]>: > > > > In firefox it was working. > > In T5.0.11 it was fixed calendar was display in IE, but it looked simple > > (i > > mean skin) > > I hope in new version

Re: T5:calendar component problem

2008-04-11 Thread Natia Gdzelishvili
dar popup to be shown? I have a > > similar problem which breaks the click event observing in IE such that > > neither calendar nor colorpicker popups can be invoked. > > > > Regards > > Jens > > > > > > > > Natia Gdzelishvili wrote: > >&g

Re: T5.0.11 beanEditForm

2008-04-11 Thread Natia Gdzelishvili
I'll try it On Fri, Apr 11, 2008 at 1:38 AM, Filip S. Adamsen <[EMAIL PROTECTED]> wrote: > This has been fixed in 5.0.12 where you can now add the @Inject annotation > to the constructor that Tapestry should use for auto-instantiating your > object. > > -Filip > &

Re: T5.0.11 beanEditForm

2008-04-08 Thread Natia Gdzelishvili
Can anyone help? On Mon, Apr 7, 2008 at 1:09 PM, Natia Gdzelishvili <[EMAIL PROTECTED]> wrote: > I am using beanedit form, i have a simple code > > AddCelebrity.tml > > > AddCelebrity.java > public class AddCelebrity { > @Persist > private Celebrity ce

Re: 答复: from T5.0.11 to T5.0.6

2008-04-08 Thread Natia Gdzelishvili
I've made new project and add my classes and now every thing work 2008/4/8 Natia Gdzelishvili <[EMAIL PROTECTED]>: > i change version because i had problem: > AddCelebrity.tml > > > AddCelebrity.java > public class AddCelebrity { > @Persist > private

Re: 答复: from T5.0.11 to T5.0.6

2008-04-08 Thread Natia Gdzelishvili
ements the interface java.util.Date. ... java.lang.RuntimeException No service implements the interface java.util.Date. and no one answered , i was stucked, and i preferred to go back to old version 2008/4/8 Michael Gerzabek <[EMAIL PROTECTED]>: > Natia Gdzelishvili schrieb: > > can

Re: 答复: from T5.0.11 to T5.0.6

2008-04-08 Thread Natia Gdzelishvili
can anyone help.. 2008/4/8 Natia Gdzelishvili <[EMAIL PROTECTED]>: > tamplates are in webcontext, as thy were before > > 2008/4/8 滕训华 <[EMAIL PROTECTED]>: > > You only need to move the template files to up level (Webcontext not > > WEB-INF) and rename thei

Re: 答复: from T5.0.11 to T5.0.6

2008-04-08 Thread Natia Gdzelishvili
tamplates are in webcontext, as thy were before 2008/4/8 滕训华 <[EMAIL PROTECTED]>: > You only need to move the template files to up level (Webcontext not > WEB-INF) and rename their extension as .tml,it will be ok > > -邮件原件- > 发件人: Natia Gdzelishvili [mailto:[EMAIL PR

Re: from T5.0.11 to T5.0.6

2008-04-08 Thread Natia Gdzelishvili
then (it changed around that release > I think). You say you had problems you couldn't solve - why? Was the > code old, or were you trying to use that book (one I wouldn't recommend) > for 5.0.11? > > Natia Gdzelishvili wrote: > > and why do i need to change

Re: from T5.0.11 to T5.0.6

2008-04-07 Thread Natia Gdzelishvili
and why do i need to change file extentions, I'm reading "Tapestry 5 Building Web Applications" book and there template files have .tml extentions. any way i have changed but it doesn't work On Tue, Apr 8, 2008 at 10:52 AM, Natia Gdzelishvili <[EMAIL PROTECTED]> wrote:

Re: from T5.0.11 to T5.0.6

2008-04-07 Thread Natia Gdzelishvili
ges, so again I strongly advise that you not do that. > > chris > > Natia Gdzelishvili wrote: > > I change my application from tapestry 5.0.11 version to 5.0.6 and I'm > > getting : > > java.lang.RuntimeException Page Start did not generate any markup when &

from T5.0.11 to T5.0.6

2008-04-07 Thread Natia Gdzelishvili
I change my application from tapestry 5.0.11 version to 5.0.6 and I'm getting : java.lang.RuntimeException Page Start did not generate any markup when rendered. This could be because its template file could not be located, or because a render phase method in the page prevented rendering. what is wr

T5.0.11 beanEditForm

2008-04-07 Thread Natia Gdzelishvili
I am using beanedit form, i have a simple code AddCelebrity.tml AddCelebrity.java public class AddCelebrity { @Persist private Celebrity celebrity; public Celebrity getCelebrity() { return celebrity; } public void setCelebrity(Celebrity celebrity) { this.ce

Re: T5:calendar component problem

2008-04-04 Thread Natia Gdzelishvili
Can anyone tell me how to work with dateField, how to change styles, I am trying to change date format but it doesn't changes, and again it doesn't work in Internet Explorer Thanks in advance On Thu, Apr 3, 2008 at 4:34 PM, Natia Gdzelishvili <[EMAIL PROTECTED]> wrote: > hi,

T5:calendar component problem

2008-04-03 Thread Natia Gdzelishvili
hi, I have a problem with tapestry calendar component, on page I have: In firefox when i click calendar icon calendar is displayed but IE it doesn't Please help Thanks in advance

Re: component event handling problem

2008-04-02 Thread Natia Gdzelishvili
thank you, it helped me :) On Wed, Apr 2, 2008 at 1:03 PM, Francois Armand <[EMAIL PROTECTED]> wrote: > Natia Gdzelishvili wrote: > > > on page Registration.tml i have: > > > > //...some component > > > value="submit"> > > > > &

Re: component event handling problem

2008-04-02 Thread Natia Gdzelishvili
omponent event handler is not invoked at all, when i run application output is: The form was submitted! problem is with submit component, when i change submit with actionLink , actionLink's eventHandler is invoked please help me:) thanks in advance On Wed, Apr 2, 2008 at 12:39 PM, Natia

component event handling problem

2008-04-02 Thread Natia Gdzelishvili
hi, I'm using tapestry 5.0.10 version, i hve a broblem with dandling submit component event handling on page i have: