Re: [T5]t5component Chart interfere with TabSet problem

2008-10-22 Thread olip
have somebody had a look over it?? Thank you Oliver olip wrote: > > I have got problems with the t5component chart when using in conjunction > with the t5 component tabset. > > As an example I use the code from the t5components site and make a test > site > with three tabs. the middle tab shou

Re: create a web organization chart in Tapestry 5

2008-10-22 Thread wesleywj2
hi weisu, thanks for the feedback, i've already implemented the geonology Tree you mentioned, but what i need is the organization chart, you know like one node/box spanned some lines downwards to another node/box. that's the presentation i'm looking for. any ideas? please advise. regards, wesley

Re: issues in getting IMarkupWriter object

2008-10-22 Thread dcalde
Hi, Did you fix your problem? We am getting the same NPE. In our case this happens when we use the back button back to a page that triggers an async submit. I filed a bug under https://issues.apache.org/jira/browse/TAPESTRY-2714 Daniel abhilash wrote: > > Hi all, > i am using tapestry4.1.5 >

Cannot access bean properties in tml file

2008-10-22 Thread Henrik Schlanbusch
Hi I am using Tapestry 5.0.15 and have come over a strange problem that I cannot resolve. In my tml file i have this code ${currentGroup.name} - which should display "Root group" instead it displays: scy-useradmin-web Tapestry 5 Application The same goes for all other places where I try to pr

Re: create a web organization chart in Tapestry 5

2008-10-22 Thread Weisu
You might use T5 Tree component. Please see the wiki link for detail. http://wiki.apache.org/tapestry/Tapestry5TreeComponent Weisu wesleywj2 wrote: > > hi all, > > is there any solution on implementing an interactive org chart that can > respond to events in T5? > > please advise, > wesley >

Re: IE8 Compatibility Quick Fix

2008-10-22 Thread Luther Baker
I'm afraid this will be an unpopular suggestion - but does anyone else wish there was a little simpler, manual/direct control over the section of the page? Just my $0.02. -Luther On Wed, Oct 22, 2008 at 5:12 PM, samlai <[EMAIL PROTECTED]> wrote: > > Anybody knows how to do this? > > BTW, the

Re: IE8 Compatibility Quick Fix

2008-10-22 Thread samlai
Anybody knows how to do this? BTW, the css include tag right after head is the following: Basically I want to be able to do the following: -- View this message in context: http://www.nabble.com/IE8-Compatibility-Quick-Fix-tp19340728p20120755.html Sent from the Tapestry - Us

create a web organization chart in Tapestry 5

2008-10-22 Thread wesleywj2
hi all, is there any solution on implementing an interactive org chart that can respond to events in T5? please advise, wesley -- View this message in context: http://www.nabble.com/create-a-web-organization-chart-in-Tapestry-5-tp20119734p20119734.html Sent from the Tapestry - User mailing lis

Re: having default meta definitions...

2008-10-22 Thread Howard Lewis Ship
Not currently. I expect to add a somewhat generic overrides mechanism for all configuration types, in Tapestry 5.1. On Tue, Oct 21, 2008 at 4:43 PM, Tom Zurkan <[EMAIL PROTECTED]> wrote: > Since contributeMetaDataLocator defines meta that cannot be overridden with > anything other than a @Meta ta

Re: Core dump when debugging @OnEvent methods on Page (JDK 1.6.0_10, Eclipse 3.3.2)

2008-10-22 Thread Steven Woolley
Me too, eclipse 3.1/jdk 1.5 on Mac, thought maybe it was 1.6, i didn't check which one eclipse/maven/jetty were using. It was unpleasant, shall we say...Steve On Tue, Oct 21, 2008 at 2:29 AM, Stephane Decleire < [EMAIL PROTECTED]> wrote: > Yes, i've got the same error yesterday on Eclipse 3.3.1.

Re: so much useless logging

2008-10-22 Thread Fernando Padilla
Most people use Log4j, so I don't think suggesting "Markers" is a worthwhile suggestion. Second, though Log4j filters are an option, I really think that's an advanced solution that again, most users never have to deal with. Also it's totally wasteful of cpu, having tapestry do all of this log

T5 - new clien side validator, again

2008-10-22 Thread Mohammad Shamsi
hi, im trying to add new validator to my project. but i have problem to add javascript for clienside validation. any idea ? -- sincerely yours M. H. Shamsi

Re: T5 - Catching user leaving a page

2008-10-22 Thread BarryDev
Thanks for the posts, I'm going to try using the onbeforeunload method, it seems to have support in most recent browsers. I'd if it works it seems less error prone than a polling system. Is it possible to call methods on one of my tapestry page's methods from a piece of custom javascript? Th

Re: T5 : localization problem

2008-10-22 Thread Stephane Decleire
Thanks Tiago Really strange component behavior since it's in total contradiction with the framework spirit : "Designers love it because Tapestry templates are so close to ordinary HTML, without all the cruft and confusion seen in JavaServer Pages." "The goal in Tapestry is for component templ

Re: T5 : localization problem

2008-10-22 Thread Thiago H. de Paula Figueiredo
Em Wed, 22 Oct 2008 06:54:33 -0300, Stephane Decleire <[EMAIL PROTECTED]> escreveu: But with the following piece of code, the result is the hardcoded "Firstname" string. Localization of the string did not occured ... Firstname This is how the Label component works: if you provide a body, it

FieldValidation regexp using 'component-id'-regexp

2008-10-22 Thread Michael Capper
Hi, thanks for all the help so far! Here is someting i can't seem to be able to fix "elegantly". I've made a component which i want to use within a BeanEditForm within the -Tags like this: for this Component, the Template RandomFieldFiller.tml has a and in its Class RandomField

Re: Does adding a Delete column to a Grid still work?

2008-10-22 Thread Geoff Callender
For the record, this works fine if I take the @Property off the _delete field. It was interfering with setDelete(boolean delete). Thanks to Uli for pointing this out to me. This wasted so much of my time I'm pleased to see someone's just added an issue about @Property. Please have a look

T5 : localization problem

2008-10-22 Thread Stephane Decleire
Hi all, I encounter the following problem : If i include the following code in one of my form, with the appropriate line firstname-label=prenom in my french localized messages file, the result is OK and the firstname label is localized. But with the following piece of code, the result is th

Re: so much useless logging

2008-10-22 Thread Andy Pahne
Lutz Hühnken schrieb: Workarounds have been proposed. For log4j, you might try a filter http://www.nabble.com/T5%3A-How-to-configure-T5-not-to-display-unwanted-log-td16024408.html (I used that in the past, but it doesn't seem to work anymore for me, I haven't had the time to look into that yet

Re: so much useless logging

2008-10-22 Thread Lutz Hühnken
Hi Fernando, > Sorry, I might be worked up, but really, wow this is just amazing me how no > one has complained about this yet. well, this is just not true. You will find many discussions regarding this on this mailing list. Workarounds have been proposed. For log4j, you might try a filter htt

T5: Query about BeanModel

2008-10-22 Thread tapestryphoto
Am I correct in thinking that the default BeanModel only recognises the standard property types (String, double, etc, etc)? I have a bean with several properties, one of which is one of my own types. When I attempt to use this bean in Grid I am unable to specify the property in the includ