Re: Some tips... client side

2012-01-21 Thread csckid
eventlink cannot read the value of the autocomplete mixin textfield. fNameTf returns null Type in a First name: # Add @Property private String fNameTf; void onAddToPrescriptionTest(){ Syste

Re: Some tips... client side

2012-01-21 Thread Lenny Primak
Could be an event link to a zone update, form submit or a page redirect to an activation context, take your pick On Jan 22, 2012, at 1:32 AM, csckid wrote: > I need to populate a grid using values entered into a autocomplete textfield. > In order to enter the values into the grid what sort of bu

Some tips... client side

2012-01-21 Thread csckid
I need to populate a grid using values entered into a autocomplete textfield. In order to enter the values into the grid what sort of button should I use? Should I use an eventlink, or submit button or should I write javascript code into the page? -- View this message in context: http://tapestr

Re: Zone and Eventlink refresh problem

2012-01-21 Thread bhorvat
Hm... Yea this worked perfectly. I know that the new id is generated but I was under the impression that tapestry eventlink will adapt to that since I did set which zone to target I thought that once everything is refresh that will also refresh... Thank you both for assistance :) -- View this me

Re: Zone and Eventlink refresh problem

2012-01-21 Thread Dragan Sahpaski
Hi, On Sat, Jan 21, 2012 at 8:37 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Sat, 21 Jan 2012 16:56:59 -0200, Dragan Sahpaski < > dragan.sahpa...@gmail.com> wrote: > > Hi, >> > > Hi, Dragan! > > > This is expected behavior. >> Once you update the outer zone the inner zon

Re: Zone and Eventlink refresh problem

2012-01-21 Thread Thiago H. de Paula Figueiredo
On Sat, 21 Jan 2012 16:56:59 -0200, Dragan Sahpaski wrote: Hi, Hi, Dragan! This is expected behavior. Once you update the outer zone the inner zone id is generated again if you don't specify it explicitly. Exactly! Solution 2: - Generate the zone's client id yourself, with a binding

Re: Zone and Eventlink refresh problem

2012-01-21 Thread Dragan Sahpaski
Hi, This is expected behavior. Once you update the outer zone the inner zone id is generated again if you don't specify it explicitly. Solution 1: - Take the zone's generated clientId @InjectComponent private Zone zoneMediaPreview; // the zoneMediaPreview component is located before the eve

Re: Zone and Eventlink refresh problem

2012-01-21 Thread Thiago H. de Paula Figueiredo
On Fri, 20 Jan 2012 20:43:09 -0200, bhorvat wrote: Hope this is bit better. Thanks t:id is the Tapestry component id. id is the HTML id attribute. You should add id attributes to solve your problem: -- Thiago H. de Paula Figueiredo Independent Jav

Re: Extending T5 annotations

2012-01-21 Thread Thiago H. de Paula Figueiredo
On Sat, 21 Jan 2012 15:38:19 -0200, Dmitriy Vsekhvalnov wrote: Hello everyone, Hi! i'm looking for a way to add my custom annotations for T5 pages/components which handles some routine tasks and updates page properties. I'm looking for both field level annotations and method (events) le

tapestry-exceptionpage 0.1.1 released!

2012-01-21 Thread Kalle Korhonen
Winter is still in full swing, but the hibernation period for Tynamo is clearly over. I don't want to steal any of Alex' thunder from his JDO release, but on the heels of it we quickly shipped another release from our module warehouse. Tapestry-exceptionpage 0.1.1 is particularly useful, so handy i

Re: Tynamo security 0.4.1 release timeframe?

2012-01-21 Thread Kalle Korhonen
We are ready for release, just waiting for the "ding!" you hear when Shiro 1.2 is ready to be taken out of the oven (the release vote for Shiro 1.2.0 happened earlier this week but the waiting period isn't over it). A few days more. Kalle On Sat, Jan 21, 2012 at 9:42 AM, Lenny Primak wrote: > T

Tynamo security 0.4.1 release timeframe?

2012-01-21 Thread Lenny Primak
There have been many issues fixed and I would like to start using it production. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Extending T5 annotations

2012-01-21 Thread Dmitriy Vsekhvalnov
Hello everyone, i'm looking for a way to add my custom annotations for T5 pages/components which handles some routine tasks and updates page properties. I'm looking for both field level annotations and method (events) level. Can someone suggest something? I'll provide some examples: @CommitAf

Zone update force browser to scroll up

2012-01-21 Thread Dmitriy Vsekhvalnov
Hi all, i have table inside zone, like this: long table. table data gets bigger than screen, and usually people scroll it down. On zone update more rows can be inserted to the table and this force browser to position at the beginning of zone (span), which for

Re: What is your tapestry project setup like (build tool/ide)

2012-01-21 Thread abangkis
Hi, my setup is pretty basic, I use eclipse to generate a dynamic web project, copy the library to the WEB-INF library. Setup a server in the eclipse window using Tomcat. Right click to start the server. And the app is running. I found that this is the easiest way to get people to start using tape