RE: tapestry not loading when JNDI enabled in Jetty

2012-10-10 Thread Marcus Furlong
t; Subject: Re: tapestry not loading when JNDI enabled in Jetty > > Date: Tue, 9 Oct 2012 16:48:15 -0400 > > To: users@tapestry.apache.org > > > > What's the error you are getting? If you are using JNDI I suggest you use > > glassfish server instead of jetty.

RE: tapestry not loading when JNDI enabled in Jetty

2012-10-09 Thread Marcus Furlong
12 16:48:15 -0400 > To: users@tapestry.apache.org > > What's the error you are getting? If you are using JNDI I suggest you use > glassfish server instead of jetty. > > On Oct 9, 2012, at 4:43 PM, Marcus Furlong wrote: > > > > > Hello Tapestry Users, >

Re: About T5 integration modules

2009-12-24 Thread Marcus Veloso
and administration, self resetting of user passwords. In the mean time, I'm using Chenillekit Access module. Best Regards, Marcus

Re: Error when running tapestry on IBM WebSphere Portal

2009-12-24 Thread Marcus Veloso
Hi Xuan, Thank you for the portlet LIB. Can you explain how to use? Marcus

Re: [ANNOUNCE] ChenilleKit 1.2.0 RELEASE

2009-10-15 Thread Marcus Veloso
.html) is not updated. Where can i get updated information about CK-access 1.2.0? Thanks, Marcus

Re: Tapestry5 and eclipse

2009-10-07 Thread Marcus Veloso
RunJettyRun and Maven: http://tapestry.formos.com/wiki/display/T5IDEINT/Eclipse+(including+Maven) Maven only: http://tapestry5.wikidot.com/ambiente http://tapestry5.wikidot.com/projeto

Re: Your best practice for - list view + detail view

2009-08-19 Thread Marcus Veloso
Hi, /book/ (for search and list) /book/detail/4711 (crud without "c") /book/detail/(create) Marcus

Re: Tapestry 5.1 running in Google App Engine (GAE)

2009-08-11 Thread Marcus Veloso
Nice work, Christian!

Re: [T5] Problems with commitAfter

2009-07-26 Thread Marcus Veloso
Hi Jose, What we usualy do is create a new method (to do the persistence) and use @CommitAfter there. @OnEvent(component="addCustomer",value="success") Object onSuccess() { this.persistData(); ... } @CommitAfter public void persistData() { ... }

Re: [T5.0.18] Bug? : Null property problem with the custom component inside a grid

2009-07-10 Thread Marcus Veloso
td24421215s302.html]<http://www.nabble.com/-T5.1--Using-a-custom-image-component-inside-a-Grid-td24421215s302.html> Regards, Marcus Veloso

[T5.1] Using a custom image component inside a Grid

2009-07-09 Thread Marcus Veloso
) {} }; } ... } ImageDO.java (bean) public class ImageDO { private String id; private byte[] image; ... ShowImage.tml (component) * List.tml (page) ... ... Thank in advance, Marcus Veloso

Re: [Tapestry Central] Caught between Two IDEs

2009-07-04 Thread Marcus Veloso
est. (http://tapestry5.wikidot.com/ambiente) Best regards, Marcus Veloso

Re: T5 & CRUD

2009-06-29 Thread Marcus Veloso
http://tapestry5.wikidot.com/ On 6/26/09, Thiago H. de Paula Figueiredo wrote: > Em Fri, 26 Jun 2009 13:55:17 -0300, Sven Homburg > escreveu: > >> for spring-less DAOs try this: >> >> http://www.chenillekit.org/chenillekit-hibernate/index.html > > Just to make sure, Ars Machina's Generic DAO-Hib

Re: t5: obtaining server name and port

2009-06-10 Thread Marcus Veloso
... @Inject private RequestGlobals requestGlobals; ... requestGlobals.getHTTPServletRequest().getServerName(); ... requestGlobals.getHTTPServletRequest().getServerPort(); ...

[T5.1] TLD file

2009-05-22 Thread Marcus Veloso
Hi, Where can we find the file ".tld" of tapestry 5.1? Thanks, Marcus Veloso

[T5.1] Mini tutorial em portugues (CRUD usando Hibernate)

2009-05-19 Thread Marcus Veloso
http://tapestry5.wikidot.com/

Re: Tapestry Forms and Cancel Button

2009-04-25 Thread Marcus Veloso
Another option? ... ... void onSubmitFromCancelForm() { ... }

Re: Decent jetty runner for eclipse

2009-04-14 Thread Marcus Veloso
code changes in pom.xml? Thanks in advance. Marcus Veloso

Re: T5: creating a tutorial for 5.0.18

2009-03-24 Thread Marcus Veloso
Hi Angelo, try -DarchetypeVersion instead of -Dversion. Cheers, Marcus Veloso

Re: [T5] Web Service

2009-03-16 Thread Marcus Veloso
http://code.google.com/p/t5-restful-webservices/

Re: Encoding in activation context

2009-03-06 Thread Marcus Veloso
Hi Fernando, Maybe this help. http://code.google.com/p/t5-restful-webservices/ Cheers, Marcue Veloso

T5 Mini Tutorial CRUD in Portuguese (BR)

2008-12-18 Thread Marcus Veloso
http://code.google.com/p/myt5t/

Re: [T5 5.0.18] - How to 'turn on' dynamic validation

2008-12-17 Thread Marcus Veloso
Hi Kawes, There is another option, you can put the "Cancel" (submit button) in another Form. Marcus

Re: Global (application state) data

2008-11-24 Thread Marcus Veloso
rsistence strategy. Right now there's only one built in strategy, but more will be coming in the future." But, as any java app, you can do this with static object. Marcus Veloso

Re: T4.1 AJAX Indicators

2008-10-29 Thread Marcus Schulte
u wrote: >>>>>>>> >>>>>>>> To answer your initial question, just use contrib:ajaxStatus from >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> http://tapestry.apache.org/tapestry4.1/tapestry-contrib/componentreference/ajaxstatus.html >>>>>>>>> >>>>>>>>> For the second, why not update only the part in question? >>>>>>>>> >>>>>>>>> On Fri, Oct 24, 2008 at 9:22 PM, Norman Franke <[EMAIL PROTECTED]> >>>>>>>>> wrote: >>>>>>>>> >>>>>>>>>> >>>>>>>>>> I sort of have it working by doing an "onclick" and relying on the >>>>>>>>>> entire >>>>>>>>>> form to update, which resets my div. >>>>>>>>>> >>>>>>>>>> But that brings up another point. I want to AJAX fetch a list of >>>>>>>>>> elements >>>>>>>>>> with a checkbox. Is there a better way to do this than by setting >>>>>>>>>> the >>>>>>>>>> entire >>>>>>>>>> form as one of the updateComponents? It pretty much forces an >>>>>>>>>> update >>>>>>>>>> of >>>>>>>>>> the >>>>>>>>>> entire page. If I don't, I can't get the values of the checkbox >>>>>>>>>> since >>>>>>>>>> tapestry serializes the state of the @For and checkboxes in >>>>>>>>>> fields. >>>>>>>>>> >>>>>>>>>> What's the best way to handle this? >>>>>>>>>> >>>>>>>>>> Norman Franke >>>>>>>>>> Answering Service for Directors, Inc. >>>>>>>>>> www.myasd.com >>>>>>>>>> >>>>>>>>>> On Oct 24, 2008, at 12:10 PM, Norman Franke wrote: >>>>>>>>>> >>>>>>>>>> I've searched the documentation, and I can't find how one >>>>>>>>>>> implements >>>>>>>>>>> a >>>>>>>>>>> "loading..." indicator when an AJAX request is sent off. My app >>>>>>>>>>> will >>>>>>>>>>> be >>>>>>>>>>> doing a series of database queries which can take 10 seconds or >>>>>>>>>>> so, >>>>>>>>>>> and >>>>>>>>>>> it >>>>>>>>>>> really needs something to tell the user they need to wait a bit. >>>>>>>>>>> Showing/Hiding a div would be great. >>>>>>>>>>> >>>>>>>>>>> Norman Franke >>>>>>>>>>> Answering Service for Directors, Inc. >>>>>>>>>>> www.myasd.com >>>>>>>>>>> >>>>>>>>>>> -- Marcus Schulte http://marcus-schulte.blogspot.com

Re: [T 4.1.6] maven warning: tapestry-annotations pom invalid

2008-09-12 Thread Marcus Schulte
Oops, the POM is missing in the repo. Never trust maven when it tells you "build successful" ... I will upload the missing POM this evening. Marcus 2008/9/12 Andy Pahne <[EMAIL PROTECTED]> > > When I tried to a project with the 4.1.6 release, maven gives me this > err

[RELEASE] Tapestry 4.1.6

2008-09-11 Thread Marcus Schulte
Finally, I finished the 4.1.6 release. Release-notes, as usual, may be found here: http://tapestry.apache.org/tapestry4.1/release-notes.html -- Marcus Schulte

Re: T-4.1.6-SNAPSHOT broken? commons-pool

2008-09-08 Thread Marcus Schulte
please make sure that there's exactly one version of commons-pool on your classpath (1.4). --Marcus

Re: Problem with aso

2008-09-03 Thread Marcus
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 Marcus
ion e) { nextPage = Login.class; e.printStackTrace(); } return nextPage; } Marcus

Re: Problem with aso

2008-09-03 Thread Marcus
Hi Natia, Can you post ASO code? Marcus

Re: T4.1.5 possible ognl cache problem

2008-09-01 Thread Marcus Schulte
;>>>> >>>>> 31896 invocations on ExpressionCache.getCompiledExpression >>>>> 31140 invocations on Ognl.compileExpression >>>>> >>>>> Is there someone to give me a clue to have better performances ? >>>>> >>>>> Thanks >>>>> >>>>> PS: sorry for double posting in dev list, I had some problems to >>>>> subscribe >>>>> to users. >>>>> -- >>>>> Denis Queffeulou >>>>> >>>>> - >>>>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>>>> For additional commands, e-mail: [EMAIL PROTECTED] >>>>> >>>>> >>>>> >>>>> >>>>> >>>>> >>>> >>>> >>>> >>> - >>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>> For additional commands, e-mail: [EMAIL PROTECTED] >>> >>> >>> >>> >> >> >> >> > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Marcus Schulte http://marcus-schulte.blogspot.com

Re: T4.1.5 possible ognl cache problem

2008-09-01 Thread Marcus Schulte
some problems to >>> subscribe >>> to users. >>> -- >>> Denis Queffeulou >>> >>> - >>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>> For additional commands, e-mail: [EMAIL PROTECTED] >>> >>> >>> >>> >> >> >> > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Marcus Schulte http://marcus-schulte.blogspot.com

Re: What if Tapestry's I18N was just "UTF-8"?

2008-07-29 Thread Marcus
UTF-8 as default +1

Re: void onActivate(String ,String)

2008-07-24 Thread Marcus
Hi, Seach on this list for: t5 "redirect after post" Tapestry uses redirect-after-post design. http://www.theserverside.com/tt/articles/article.tss?l=RedirectAfterPost Marcus

[T5] OT - There is a Jetty app manager?

2008-07-24 Thread Marcus
Hi, Sorry about the off topic question... Tomcat have your own app manager, and lambda probe is another option. Is anyone out there using such tool with Jetty? Thanks, Marcus

Re: T5: FileUpload and time out(revisited)

2008-07-15 Thread Marcus
Hi Angelo, what if you increase session timeout in web.xml? Marcus

Re: [T5] Login session

2008-07-09 Thread Marcus
ateADispatcher http://wiki.apache.org/tapestry/Tapestry5HowToCreateADispatcher2 Marcus

Re: T5: onSelectedFrom ...

2008-07-07 Thread Marcus
Hi Stephane, Are you on 5.0.13? Have you tried without t:zone="testZone" parameter? Marcus

Re: LazyInitializationException for ASO?

2008-07-07 Thread Marcus
Hi Zack, Maybe the problem is related to Survey.java, can you post the code? Marcus

Re: [T4.1.5] RadioGroup EventListener doesn't work

2008-07-06 Thread Marcus Schulte
Sorry guys, I've forgotten the version-hint in the docs. The feature was committed to trunk end of march. Currently, it's only available in version 4.1.6-SNAPSHOT. I meant to push a release, but then, I never got around. Marcus 2008/7/4 Christophe Mesplede <[EMAIL PROTECTED]&g

Re: T5 date localization

2008-07-03 Thread Marcus
Hi Udo, OutputLocale (or OutputLocaleNumber) is now a component of *myt5lib*project. http://code.google.com/p/myt5lib/ Marcus

Re: T 5.0 - format grid column

2008-06-18 Thread Marcus
Hi mdmota, The project site was updated with installation instructions. http://code.google.com/p/myt5lib/ Marcus On 6/18/08, Marcelo Lotif <[EMAIL PROTECTED]> wrote: > Hi mdmota, > Configuring any tapestry library is very simple. In this case we don't > have a maven reposi

Re: T 5.0 - format grid column

2008-06-17 Thread Marcus
Hi Mdmota, http://code.google.com/p/myt5lib/ Marcus

Re: T5: translate input according to locale

2008-06-15 Thread Marcus
Hi Uli, I miss the same feature. We're using this for Grid http://wiki.apache.org/tapestry/Tapestry5OutputLocaleNumber Marcus

Re: 答复: 答复: 答复: About refresh action of grid component

2008-06-12 Thread Marcus
Have you checked the content of allCustomers list after call the method customerManager.getCustomersByKey(searchKey)? Marcus

Re: 答复: 答复: About refresh action of grid component

2008-06-11 Thread Marcus
Hi, If you put this code on onSubmit(), it works? Marcus

T5 Components - Help with SidePanel

2008-06-11 Thread Marcus
Hi, How can I configure t5components.SidePanel to start "not closed"? closed="false" dosen't work :( thanks, Marcus

Re: T5: Using tapestry components in a JSP

2008-06-09 Thread Marcus
Hi lance, http://tapestry.apache.org/tapestry5/struts.html Marcus

Re: T5 UTF encoding

2008-06-09 Thread Marcus
Hi Max, We deal with especial characters like this: - UTF8Filter on AppModule - equals() and hashCode() for beans used on Select component. Marcus

Re: ApplicationState not stored during onSuccess?

2008-06-03 Thread Marcus
Hi Martin, Maybe your problem is in the "LoginStatus" code, can you post it? Marcus

Re: T5 ajax zone changing

2008-06-02 Thread Marcus
Hi Janko, maybe this help http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/test/app1/ZoneDemo.tml?view=markup http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/ZoneDemo.java?view=markup Marcus

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Marcus
Hi Andrew, Sorry about $content$, Robert is right about T5 and T3 RenderBody. Marcus

Re: Equivalent of jwcid="$content$" in T5

2008-06-01 Thread Marcus
Hi Andrew, $content$ = ( http://tapestry.formos.com/nightly/tapestry5/tapestry-core/guide/templates.html ) for $remove$ you can use t5components/remove or search on list for "public class Remove" Marcus

Re: T5 Creating a Library of Custom Components

2008-05-29 Thread Marcus
Hi Thiago, - MANIFEST.MF was extracted from JAR and checked, file is ok - Try putting JAR in project build path. same error :( Marcus

Re: T5 Creating a Library of Custom Components

2008-05-28 Thread Marcus
Hi Thiago, You are right, LibraryModule was not loaded. generated JAR: META-INF META-INF/MANIFEST.MF pub pub/t5lib pub/t5lib/LibraryModule.class pub/t5lib/components pub/t5lib/components/MyComponent.class any idea? Thanks, Marcus

T5 Creating a Library of Custom Components

2008-05-28 Thread Marcus
837) - org.mortbay.http.SocketListener.handleConnection(SocketListener.java:245) - org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357) - org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534) Thank in advance, Marcus

Re: Callback in a propery editor

2008-05-27 Thread Marcus
Hi José, Maybe you could use onValidateForm(), it's called before onSuccess(). Marcus

Re: Contributing to the BeanModel

2008-05-27 Thread Marcus
/integration/app3/ Marcus

Re: T5: Grid in a zone

2008-05-25 Thread Marcus
Hi Stephane, I already have a zone including my grid and with the inPlace parameter, my > grid is no more refreshed. > You don't need any zone component, just the atribute inPlace. Marcus

Re: Autocomplete component

2008-05-21 Thread Marcus
Hi, Using autocomplete mixin, how do we know, if an option of the list provided was selected, or if user has entered another text? Would be great if some event was fired on server side when user select one of option provided by mixin. Thanks, Marcus

Re: Tapestry users declined for the first time in 3 years, says this researh site ...

2008-05-20 Thread Marcus
"Rob", I'm sure that you are a very busy man, so, don't worry about the future of Tapestry, you have did your part, thanks. I think you have to move on, and forget about Tapestry.

Re: Instability in Tapestry 5.0.12-SNAPSHOT

2008-05-19 Thread Marcus
if T5 willBeCompatibleWith T(5+n) andT5 shouldWorkWith T(5-n) then rename T(5-n) annotations packages; else if T5 willBeNotCompatibleWith T(5+n) then rename all Tapestry packages; Marcus

Re: EventListener and JavaScript function

2008-05-12 Thread Marcus Schulte
't work (at least I haven't gotten it to work > for my case. > > Thanks in advance! > > -warner > > Warner Onstine - Programmer/Author > New book on Tapestry 4! > Tapestry 101 available at http://sourcebeat.com/books/tapestrylive.html > [EMAIL PROTECTED] > http://warneronstine.com/blog > > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Marcus Schulte http://marcus-schulte.blogspot.com

Re: Simple date format question

2008-05-09 Thread Marcus
Leon, No, you can't, :) it's only for output. Don't forget to vote on JIRA! Marcus

Re: T5: select within table grid

2008-05-09 Thread Marcus
Hi Axel. Maybe this help, "Adding Columns Example" at http://tapestry.formos.com/nightly/tapestry5/tapestry-core/ref/org/apache/tapestry/corelib/components/Grid.html Marcus

Re: Simple date format question

2008-05-09 Thread Marcus
Hi Leon, There is a JIRA about format parameter for DateField, vote! To format a date output you can use OutputLocale component ( http://wiki.apache.org/tapestry/Tapestry5OutputLocaleNumber) Marcus

Re: [T4.1.5] problems with file service and IE

2008-05-07 Thread Marcus Schulte
The exception hints to IE closing the connection unexpectedly. Might it be related to the content you're streaming? I use very similar code to serve out Excel files to IE. Works great. Did you try omitting the length-header? On 07/05/2008, Henrik Schlanbusch <[EMAIL PROTECTED]> wrot

Re: [T4.1.5] problems with file service and IE

2008-05-07 Thread Marcus Schulte
you can shed some light on this for me. > > Regards, > Henrik > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Marcus Schulte http://marcus-schulte.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: tapestry web app , deployed in tomcat. Need to set as default web app

2008-05-06 Thread Marcus
Hi Mahen, Maybe this help, server.xml: ... ... ... ... Marcus

Re: Encoding problem (UTF-8)

2008-04-30 Thread Marcus
Hi, We're using autocomplete mixin with no problem, maybe this help. http://wiki.apache.org/tapestry/Tapestry5Utf8Encoding Marcus

Re: T5: Getting Request Info

2008-04-28 Thread Marcus
(); return "start"; } ... What's the best practice? Thanks, Marcus

Re: [T4]hivemind variables in components

2008-04-24 Thread Marcus Schulte
those values in the components? For example, I would like to use the > hivemind variable 'amplafi.production' as the condition in a @If > > for example,: > > > hey there amplafi.production is true! > >

Re: migrating from T4.0.2 to T4.1.5 problem

2008-04-18 Thread Marcus Schulte
sit"/> > > > > anyone know whats the problem ? > > > TIA > > abangkis > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Marcus Schulte http://marcus-schulte.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Dynamic list of strings in a form

2008-04-15 Thread Marcus
Hi Michael, Try Grid component instead a Loop. Marcus

Re: How to 'bypass' client side validation - when 'Cancel' is pressed.

2008-04-15 Thread Marcus
Hi Jan, maybe this help void onSubmitFromCancelForm() { ... } Marcus

Re: T5: obtaining a list of valid pages

2008-04-14 Thread Marcus
Hi Angelo, - get ContextClassLoader from current Thread - get path of your pages package (org.exemplo.teste.pages) from ClassLoader - get files on this path that ends with ".class", skiping inner classes. I think this topic already has been discussed here. Marcus.

Re: T4 - Autocompleter without doing a full page re-render

2008-03-31 Thread Marcus Schulte
You can distinguish between a "normal" render and an "ajax"-render via getRequestCycle().getResponseBuilder().isDynamic(), hth, Marcus On 01/04/2008, Paul Stanton <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'm using the @Autocompleter component

Re: T4 - Autocompleter without doing a full page re-render

2008-03-31 Thread Marcus Schulte
You can distinguish between a "normal" render and an "ajax"-render via getRequestCycle().getResponseBuilder().isDynamic(), hth, Marcus On 01/04/2008, Paul Stanton <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'm using the @Autocompleter component

Re: T5: Custom (conditional) validation

2008-03-31 Thread Marcus Schulte
nseRenderer().updateComponent("txt2"); } ... Marcus On 31/03/2008, Inge Solvoll <[EMAIL PROTECTED]> wrote: > > Hi! > > I'm reading the examples on TextField validation, which use > validate="required,regexp" for specifying validation rules. > > A lot of my p

Re: t5: new features in 5.0.11

2008-03-13 Thread Marcus
Hi, @Property works for any class? or only for components and pages? thanks, Marcus On 3/13/08, Robert Zeigler <[EMAIL PROTECTED]> wrote: > > On Mar 13, 2008, at 3/139:07 AM , Angelo Chen wrote: > > > > > Hi, > > > > As usual I always like to look at new

Re: T5: Tomcat 6

2008-03-12 Thread Marcus
Hi Angelo, We are using T5 with Tomcat 6, no problems. Marcus

Re: T5: beaneditor and remove

2008-03-06 Thread Marcus
remove" and "reorder". A comma separated list of fields that have to appear disabled in BeanEditForm. https://issues.apache.org/jira/browse/TAPESTRY-2153 Thanks, Marcus

Re: beaneditform - java.lang.RuntimeException: No service implements the interface org.apache.tapestry.internal.InternalComponentResources.

2008-03-04 Thread Marcus
Hi Jack, Can you post the code of this class? http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> Login: maybe the problem is there. Marcus

Re: T5: Grid's rowClass

2008-03-03 Thread Marcus
Hi Angelo, If we use boolean type for "cssClass", maybe we don't need a set method. private boolean cssClass = false; public String getRowClass() { cssClass = !cssClass; return (cssClass ? "" : "zebra"); } Marcus Angelo Chen wrote:

Re: t5: BeanEditform and Timestamp

2008-03-02 Thread Marcus
Hi Angelo, Maybe this help: http://tapestry.formos.com/nightly/tapestry5/tapestry-core/guide/beaneditform.html "Adding New Property Editors" Marcus

Re: [FAQ] common design

2008-02-28 Thread Marcus
Hi Jesper, You can use: @IncludeStylesheet("context:style.css") public class Layout { instead of: @Inject @Path("context:/style.css") private Asset style; Marcus

Re: form aware page and action links

2008-02-28 Thread Marcus
"validate", "success" (or "failure") and "submit" events*. Thus the best thing to do is to store in a temporary field what should be done inside the "success" event handler.) The use of multiples submit buttons appears to be the best option, instead of actionlinks. Marcus

Re: T5.0.10: DateField on IE

2008-02-25 Thread Marcus
Hi Howard, Any news about 'format' parameter? Thanks Marcus

Re: Can a page do something before actions are invoked on it?

2008-02-15 Thread Marcus
Hi Ryanskow, Maybe this help: http://wiki.apache.org/tapestry/Tapestry5HowToCreateADispatcher http://wiki.apache.org/tapestry/Tapestry5HowToCreateADispatcher2 We are using Dispatcher to control access to pages. Marcus

Re: T5: zone example

2008-02-15 Thread Marcus
Hi Angelo, Look at tapestry-core source, in src\test\java\org\apache\tapestry\integration\app1\pages , there are a lot of examples, including ZoneDemo.java Marcus

Re: Tapestry is not working

2008-02-15 Thread Marcus
Hi Marie, I have used EWDT too, it's a great book, but i suggest you try Tapestry 5, it is easy to learn and more intuitive than older versions. Start with http://tapestry.apache.org/tapestry5/tutorial1/ Marcus

Re: T5: Email Validator

2008-02-12 Thread Marcus
Hi Renat, We can use validation inside properties, on the client side. But we still can use: void onValidateFromMyEmailField(String cliente) throws ValidationException on the server side. Marcus

T5 - BeanEditForm and ASO

2008-01-29 Thread Marcus
Hi, All tests of BeanEditForm (in tapestry-core) are using an ASO (RegistrationData). ASO is not required for use BeanEditForm or BeanEditor, right? Using ASO is the best pratice? Thanks, Marcus

Re: What happend to org.apache.tapestry.annotations.Inject ?

2008-01-28 Thread Marcus
3A-Upgrade-to-5.0.6-SNAPSHOT-tf4515211.html#a12878469> Marcus

Re: What happend to org.apache.tapestry.annotations.Inject ?

2008-01-26 Thread Marcus
Hi spamglik, org.apache.tapestry.*ioc*.annotations.Inject http://www.nabble.com/T5%3A-Upgrade-to-5.0.6-SNAPSHOT-tf4515211.html#a12878469 Marcus

Re: T5: Formatting date inside loop on template

2008-01-25 Thread Marcus
Hi Joshua, try OutputLocale. http://wiki.apache.org/tapestry/Tapestry5OutputLocaleNumber Marcus

Re: Problem using EventListener annotation

2008-01-24 Thread Marcus Schulte
System.out.println(e); > } > > } > > > > -- > View this message in context: > http://www.nabble.com/Problem-using-EventListener-annotation-tp15072602p15072602.html > Sent from the Tapestry - User mailing list archive at Nabble.com. > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Marcus Schulte http://marcus-schulte.blogspot.com

Re: Javascript error when moving from 5.0.6 to 5.0.7

2008-01-23 Thread Marcus
Hi Mahen, Try clean browser cache. Marcus

Re: org.apache.tapestry.page-pool-min-idle

2008-01-20 Thread Marcus Schulte
guration is > just ignored? > How can I verify the "page-pool-min-idle" property has been set? > > Thanks, > Kaspar > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Marcus Schulte http://marcus-schulte.blogspot.com

  1   2   3   4   >