IE6 issue with dropdowns

2008-03-17 Thread sasidhar
Hi, In a web page, when a menu / floating pane is displayed over a dropdown, dropdown overlaps the menu / floating pane. This problem is observed only in IE6 (works fine in IE7 and firefox) Note : i am using @propertySelection component. Tapestry version - 4.1.3. Is there a way to workarou

[T5] url asset prefix?

2008-03-17 Thread Fernando Padilla
I'm sorry, but I can't remember if this was discussed in the mailing list.. but I want to do something like: @Inject @Path( "url:http://blah"; ) private Asset blahJs; Has T5 added something built in for that yet? - To unsubs

Re: Class and template auto-reloading in IntelliJ

2008-03-17 Thread Bill Holloway
I hate to keep this thread going, but here goes: IntelliJ 7.0.2, latest jetty plugin build (as of 17-March 2008), Tap 5.0.11. I've got a basic Jetty run config defined. when I run it, it immediately disconnects from the server, and the jetty log reads as below. I'm continuing to play with this.

Re: Class and template auto-reloading in IntelliJ

2008-03-17 Thread Howard Lewis Ship
Jetty 6 is not compatible with JettyLauncher. The IDEA plug for Jetty works fine with Jetty 6. On Mon, Mar 17, 2008 at 4:39 PM, Bill Holloway <[EMAIL PROTECTED]> wrote: > Are you using Jetty 6? I thought that wasn't kosher yet with tap 5. > > bill in austin > > > > On Tue, Mar 11, 2008 at 10:3

T4: page pool & memory leaks

2008-03-17 Thread Jean-Philippe Bouchard
Boy, am I glad to have figured out that one! I run a pretty busy site using T4 and tomcat had to be restarted every day because it was running out of memory. That problem has plagued me for the past year and it turns out it was caused by the page pool accumulating several version of each page f

Re: [T5] How to get ampersand (&) rendered raw / not encoded as &?

2008-03-17 Thread Josh Canfield
If I am understanding you correctly, you are getting something like this in your source: http://host/page?arg1=val1&arg2=val2";> That is actually the correct behavior and it shouldn't be causing a problem in your browser. Are you seeing a problem? http://htmlhelp.com/tools/validator/problems.htm

[T5] How to get ampersand (&) rendered raw / not encoded as &?

2008-03-17 Thread Martin Grotzke
Hi, I have a an html element (iframe) that get's a property of my page class (the current query string) appended to its src attribute. The query string may contain the "&" char, which always gets expanded as "&". Is there any possibility to prevent T5 from encoding this char? Thanx && cheers, Ma

@EventListener - SubmitForm element

2008-03-17 Thread Carlos F
I am displaying a tabular list of records inside of a form. Each row in the tabular list includes a checkbox, an up and down arrow image and info about the detail record in question. When the user clicks on the up and down arrow image the detailed record should be resorted in a backing list a

Re: T5: 5.0.11 Grid's getRowsPerPage() is gone

2008-03-17 Thread Adam Zimowski
https://issues.apache.org/jira/browse/TAPESTRY-2271 On Mon, Mar 17, 2008 at 12:42 PM, Adam Zimowski <[EMAIL PROTECTED]> wrote: > Yes, I started looking at source and that's exactly what happened. I > believe in this case we probably want classic getter-setter combo for > outside code which may n

Re: T4: Rewind of Form nested within a For loop

2008-03-17 Thread Alejandro Scandroli
Hi all I'm also interested in a good solution to this. I've encountered this problem several times and I couldn't find a proper solution, my lame workaround was (always) to try to avoid this situation. -- Alejandro Scandroli - http://weblog.amneris.es/ Amneris: We build process-driven web applic

Re: T5: 5.0.11 Grid's getRowsPerPage() is gone

2008-03-17 Thread Adam Zimowski
Yes, I started looking at source and that's exactly what happened. I believe in this case we probably want classic getter-setter combo for outside code which may need to read/set these. I will add JIRA. /** * The number of rows of data displayed on each page. If there are more rows than w

Re: T5: 5.0.11 Grid's getRowsPerPage() is gone

2008-03-17 Thread Filip S. Adamsen
The rowsPerPage getter/setter has probably been replaced by @Property - I'm sure it can be changed if you add an issue to JIRA. -Filip On 2008-03-17 17:23, Adam Zimowski wrote: After upgrading 5.0.10 to 5.0.11 Grid's getRowsPerPage() method is now gone. What is the replacement, or alternative

image doesn't render id

2008-03-17 Thread Carlos F
The value of getClientId() seems critical to the proper use of clientside javascript. However, unless a component includes a call torenderIdAttribute() while rendering its open element tag, the componentseems unable to display its id property. I ran across this when itried to use an Image as

image doesn't render id

2008-03-17 Thread carlos f
The value of getClientId() seems critical to the proper use of client side javascript. However, unless a component includes a call to renderIdAttribute() while rendering its open element tag, the component seems unable to display its id property. I ran across this when i tried to use an Image a

[ANN] t5components 0.5.11 is now available for Tapestry 5.0.11

2008-03-17 Thread Sven Homburg
Hi there, t5components 0.5.11 is now available for Tapestry 5.0.11 with many fixes and some new features. project page http://tapestry5-components.googlecode.com -- with regards Sven Homburg http://tapestry5-components.googlecode.com

Re: [T5] Tap5.0.11: java.lang.NoClassDefFoundError: org/apache/tapestry/internal/services/ClassNameLocator

2008-03-17 Thread Tobias Wehrum
Hi there, just to let you know, I now figured out what the problem was: I was still using T5Components 0.5.10, and I suppose that refered to org.apache.tapestry.internal.services.ClassNameLocator. Updating to T5C 0.5.11 solved this problem. Regards, Tobias Tobias Wehrum schrieb: It's tapes

Re: T5: Now to generate page with binary output

2008-03-17 Thread Josh Canfield
You need to return a StreamResponse http://tapestry.apache.org/tapestry5/apidocs/org/apache/tapestry/StreamResponse.html Also, check out the following for an example. http://wiki.apache.org/tapestry/Tapestry5HowToStreamAnExistingBinaryFile Josh On Sat, Mar 15, 2008 at 8:11 AM, Dmitry Shyshkin <

T5: 5.0.11 Grid's getRowsPerPage() is gone

2008-03-17 Thread Adam Zimowski
After upgrading 5.0.10 to 5.0.11 Grid's getRowsPerPage() method is now gone. What is the replacement, or alternative way at getting this information? -adam - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

t5: refer prototype.js in a .tml file and some others

2008-03-17 Thread Angelo Chen
Hi, I got some questions about js and images files: 1. I need to refer to prototype.js in a .tml file, how to do that? this does not work: 2. In a .tml file I refer to a gif as follow: ${asset:context:images/mail.gif} Now, how to refer to the same file in a .js file? Thanks, A.C. --

T4: Rewind of Form nested within a For loop

2008-03-17 Thread Justin Walsh
Hi, I have a page containing items which the user can edit individually using asynchronous posts. The basic structure of the page is as follows: ... form fields, for example The problem is of course that when the form is rewound, it is done outside the context of the

Re: Redirect on login

2008-03-17 Thread Gabriel Landais
Cordenier Christophe a écrit : In fact, this is a better solution if you have an activation context. So to achieve this, we still may use the "ComponentResources" class and its "createPageLink" method Christophe. Thanks all, it works great now : @ApplicationState private SimExplorerSt

T4: Autocomplete doesn't accept any values when typed in via keyboard but not selected via click

2008-03-17 Thread Stroeber, Andreas
Hi there, Please help me out with this one: I try creating an autocomplete field that holds just strings. The field has a model that contains values inserted into this field in the past (the model is generated from values in a database). The field should accept any values from this history but

JumpStart 3.4 now available - for Tapestry 5.0.11

2008-03-17 Thread Geoff Callender
Hi all, JumpStart 3.4 is now available for Tapestry 5.0.11. Features include: * Example of combining custom components to create new components. Utilises SlidingPanel from the tapestry5-components project. * Simpler custom exception page. Utilises 5.0.11's new ExcptionDisplay component.

Re: JumpStart 3.3.1 now available - fixes 3.3.0 bugs

2008-03-17 Thread Geoff Callender
Julian, thanks for your thoughts. This needs a bit of mulling over. You are right in thinking I'd rather not introduce Maven into the mix. I'm a fan of the concept but not the implementation (please, folks, no flames over this. It's just a personal preference). As for Ant, did you notic

Re: HibernateEntityPackageManager contributions not being processed in 5.0.12

2008-03-17 Thread Hugo Palma
mmm, is tapestry-hibernate supposed to work with hibernate entity manager ? Howard Lewis Ship wrote: > Nothing's changed there between 5.0.11 and 5.0.12. Could it be > there's an error in your module, or in some of your mappings? > > On Fri, Mar 14, 2008 at 11:16 AM, Hugo Palma <[EMAIL PROTECTED]

Re: How to use Autocompleter in tapestry4.1

2008-03-17 Thread Ulrich Stärk
The second and third parameters to DefaultAutocompleteModel are the names of fields of the objects you pass as the first parameter. I.e. if you had a User object with the fields id and name and you wanted id to be the keyField and name to be the labelField you would have to have getters for those f

How to use Autocompleter in tapestry4.1

2008-03-17 Thread uday65
Hello EveryBody, I am facing the problem while creating the Autocompleter in tapestry 4.1. What i am doing... in html in java public IAutocompleteModel model = null; public IAutocompleteModel getModel() { System.out.println("in model"); if (model == null)

Re: T5 ioc eager load with more than one module

2008-03-17 Thread Martijn Brinkers
Hi, It seems to happend when the following applies: I have two modules, module A and module B. Module A has two services SA1 and SA2 both of them are eager loaded. Module B depends on module A so a SubModule annotation is added to Module B. Module B has one service SB1. SB1 is also eager loaded.

Re: T5: Cannot get org.acegisecurity.CredentialsExpiredException to work

2008-03-17 Thread Robin Helgelin
On Mon, Mar 17, 2008 at 8:40 AM, Olle Hallin <[EMAIL PROTECTED]> wrote: > It properly catches the CredentialsExpiredException that was thrown by the > UsernamePasswordAuthenticationToken and tries to publish the event, but the > ProviderManager.applicationEventPublisher is null. > > I don't kno

Re: T5: Cannot get org.acegisecurity.CredentialsExpiredException to work

2008-03-17 Thread Olle Hallin
Correction to myself: tapestry5-acegi version: 1.0.3 As I said, it looks like there is a missing collaborator in the standard Acegi ProviderManager. It properly catches the CredentialsExpiredException that was thrown by the UsernamePasswordAuthenticationToken and tries to publish the event, but t