HTML 5 support

2010-10-10 Thread Marcel
Hello, What is the status of HTML 5 support? If it is not supported out of the box, what is the best strategy to follow using either T5.1 or T5.2? Best, Marcel - To unsubscribe, e-mail: users-unsubscr

How to access the servlet context in AppModule?

2008-01-26 Thread Marcel Schepers
How to access the servlet context in AppModule? Tapestry's Spring integration does not work for the 'services' package. A Spring service is needed for a custom BindingFactory. My idea was to access Spring's application context and instantiate a new BindingFactory with the Spring service as construc

Re: How to access the servlet context in AppModule?

2008-01-26 Thread Marcel Schepers
On Jan 26, 2008 6:34 PM, Fernando Padilla <[EMAIL PROTECTED]> wrote: > Within the AppModule you can try accessing the following services: > > 1) WebContextApplicationContext > 2) RequestGlobals > 3) @Inject @Service("beanName") > > The third option does not work; Tapestry does only inject spring s

Re: How to access the servlet context in AppModule?

2008-01-26 Thread Marcel Schepers
'contributeBindingSource'. The concept of services, build... methods and contribute... methods is an area I need to dive into, it is still fuzzy. Marcel On Jan 26, 2008 7:41 PM, Fernando Padilla <[EMAIL PROTECTED]> wrote: > Ah. I think there was a misunderstanding on how App

scary error messages

2008-01-30 Thread Marcel Schepers
g Tapestry version 4.1.3 (from the Maven repository). Any ideas what might cause this? Marcel

Re: scary error messages

2008-01-30 Thread Marcel Schepers
At this time I am not able to provide a detailed description of the setup. However I can provide a fragment of the console/error log. I will provide the details tomorrow. Thanks for your kind words! Marcel On Jan 30, 2008 8:31 PM, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > This ha

Re: scary error messages

2008-01-31 Thread Marcel Schepers
ning wanders about a serious server overload. I've googled already who to handle a Jetty server overload, but did not find anything. I will continue to google for a while and if nothing comes up, I will contact WebTide on this issue. Thank you for your time! Marcel

Re: scary error messages

2008-01-31 Thread Marcel Schepers
, these versions are not loaded in the same context. Marcel On Jan 31, 2008 6:55 PM, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > Thanks for the in depth analysis. The EntityManager requiring > javassist does provide some hope. > > Just to confirm things - is your app running with

directlink without a page refresh

2008-02-05 Thread Marcel Schepers
also forces my client's clients to scroll down. And they hate it... Marcel

[T5] Customizing BeanEditForm Layout

2008-10-29 Thread Marcel Sammut
ut I need to do more than just the label. For example, how would I add an ActionLink component right beside the submit button? Below is my template for the beaneditform (v5.0.15): ${message:label-change} Link Thanks, Marcel S. -- View this message in

[T5] Creating Links At Runtime

2008-10-31 Thread Marcel Sammut
e rendered? Your thoughts are much appreciated. - Marcel -- View this message in context: http://www.nabble.com/-T5--Creating-Links-At-Runtime-tp20274715p20274715.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: [T5] Creating Links At Runtime

2008-10-31 Thread Marcel Sammut
container when instantiating the AbstractLink component. Any idea to do that? Thanks, Marcel Robert Zeigler wrote: > > Why not just use ComponentResources.createActionLink and > ComponentResources.createPageLink? > > .tml: > $somelink Link Text > .java: &

Re: [T5] Creating Links At Runtime

2008-11-01 Thread Marcel Sammut
ook the event to the action? Thanks Once Again. Marcel Howard Lewis Ship wrote: > > ${createURL} click me > > You just have to provide getCreateURL() as a wrapper around > ComponentResources.createActionLink(). > > You don't instantiate a component, just @Inject the Comp

Re: [T5] Creating Links At Runtime

2008-11-03 Thread Marcel Sammut
emplate file, and rendered purly in Java. Thanks - Marcel Peter Stavrinides wrote: > > Hi Marcel > > Tapestry 5 is not like 3, most of the boilerplate code is gone, it appears > to me that you are trying to do too much... have you gone through the > tutorials yet? I think you wi

Re: [T5] Creating Links At Runtime

2008-11-03 Thread Marcel Sammut
Thanks for all your support. I managed to figure out what I was doing wronge and got it working. A fix to the way I was using ComponentResources.createEventLink() as well as updating my @OnEvent to use "value" parameter instead of "component" did the trick. Cheers, Marcel

[T5] Ajax And Zones

2008-11-06 Thread Marcel Sammut
Greetings, I have a component which displays a header and body contents, where the contents are collapsed via AJAX support. The component is a DIV which wraps a table that contains the header, AJAX block and Zone. There is an ActionLink which is used to invoke the AJAX method that returns the AJ

Re: [T5] Ajax And Zones

2008-11-07 Thread Marcel Sammut
with straight text and HTML, no input fields. In my situation, the AJAX component doesn't contain a Form, but the components container may, so how do you use AJAX Zones with forms...for example, dynamic content. Thanks, Marcel Thiago H. de Paula Figueiredo wrote: > > Em Fri, 07 Nov 200

[T5] Delegate Rendering

2008-11-12 Thread Marcel Sammut
riter writer) { writer.element("table"); ... } Any thoughts or suggestions? Thanks, Marcel -- View this message in context: http://www.nabble.com/-T5--Delegate-Rendering-tp20471932p20471932.html Sent from the Tapestry - User mailing list archiv

[T5] actionlink context

2008-11-20 Thread Marcel Sammut
Stirng value = getValue("critieria") ... } Is there anyway to access the value for the "criteria" input field in the searchExecute method? I tried looking at the Request.getParameter("criteria"), but that returned null. Thanks, Marcel Sammut -- View this m

Re: [T5] actionlink context

2008-11-20 Thread Marcel Sammut
form. Will this not trigger a page refresh though? If the input field is within the form, how do I obtain the value on the event handler? Will all the form field's be posted to the method? I don't understand how using the LinkSubmit differs from EventLink in this case? Thanks, Marcel

Re: [T5] Persistent fields may not be updated until after the page has finished loading

2008-11-20 Thread Marcel Sammut
I had the same problem when moving to 5.0.16. It was pretty simple for me, since what I was doing was initializing my persistant variables in the declaration. What I did was move the initialization to the SetupRender phase of the cycle. Hope that works for you too. Cheers, Marcel Eric Ma

[t5] actionlink callback

2008-11-22 Thread Marcel Sammut
ing so on an ActionLink, nothing happens. ex. ... Can this be done in the Java class event handler for the event? I've tried different techniques, but nothing seems to work. Any ideas how to provide event callbacks in T5 (5.0.16)? Cheers, Marcel -- View this message in context: h

[T5] MVC Issues

2008-11-26 Thread Marcel Sammut
rameter, does not submit the form when the action is invoked. The "model" is a regular POJO and is not a component, but is part of the Render phase. I'm still trying to get my head around conversion of old T3 applications, so I'm open to new design approaches in terms of h

JBoss dependency causes ClassCastException

2007-03-18 Thread Marcel Schepers
. I do not know if this is a Jetty issue or not. But I am puzzled that the JBoss archive contains javax.sql classes and interfaces that are provided by Java 1.4 and 1.5. Why o why does JBoss bundle the java.sql package? Have a nice day, Marcel Schepers

Re: JBoss dependency causes ClassCastException

2007-03-18 Thread Marcel Schepers
ovided in > tapestry-contrib's pom.xml flie. > > On 3/18/07, Andreas Andreou <[EMAIL PROTECTED]> wrote: > > > > in your pom, where you define the dependency to tapestry-contrib, > > have it exclude jboss-j2ee > > > > On 3/18/07, Marcel Schepers <[EMAIL PR

Problem with quickstart

2007-04-27 Thread Thannhäuser, Marcel
Anyone has a solution for this? Bye Marcel

T5 Page Engine

2009-12-16 Thread Marcel Sammut
ach and am trying to port some T3 applications over to T5. Any ideas or thoughts on how to convert a T3 AbstractService would be useful. Cheers, Marcel -- View this message in context: http://old.nabble.com/T5-Page-Engine-tp26823567p26823567.html Sent from the Tapestry - User mailing list archive at Nabble.com.

T5 PageRedirectExeption

2009-12-17 Thread Marcel Sammut
PageRedirectException class, but not sure what to use in T5. Thanks, Marcel -- View this message in context: http://old.nabble.com/T5-PageRedirectExeption-tp26831529p26831529.html Sent from the Tapestry - User mailing list archive at Nabble.com

[T5] Iterate Through Page Messages (Localization File)

2010-01-01 Thread Marcel Sammut
o Messages to a Map so that I can traverse through the list of key pairs? Thanks, Marcel -- View this message in context: http://old.nabble.com/-T5--Iterate-Through-Page-Messages-%28Localization-File%29-tp26988936p26988936.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Forms require that the request method be POST and that the t:formdata query parameter have values

2014-09-08 Thread Marcel Huber
y have a idee what that is and what we can do to fix it? thx -- Marcel owns his style. Application Engineer

redirect after javascript ajax call

2020-08-28 Thread Marcel Schepers
new page. Is there an easy way to get this done in Tapestry? Many thanks in advance! Best, Marcel - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

no CSS since 5.6.0

2020-09-03 Thread Marcel Schepers
ncluding the tapestry-javadoc dependency) Perhaps related, if I include the 'tapestry-webresources' dependency I get a 'java.lang.NoClassDefFoundError: Could not initialize class com.google.javascript.jscomp.CompilerOptions' error. Any suggestions where to look?

Re: redirect after javascript ajax call

2020-09-03 Thread Marcel Schepers
Check this and let us know whether it's what you need: https://tapestry.apache.org/ajax-and-zones.html#AjaxandZones-Invokingserver-sideeventhandlermethodsfromJavaScript Thank you the link. It did help a bit, but it mainly made me realize that my JavaScript/jQuery knowledge is by no means suff

Re: no CSS since 5.6.0

2020-09-03 Thread Marcel Schepers
me     root user.timezone     Europe/Amsterdam Thiago H. de Paula Figueiredo wrote on 03/09/2020 14:52: On Thu, Sep 3, 2020 at 7:32 AM Marcel Schepers wrote: Hello, Hello! Please try running your site in production with tapestry.production-mode=off to see whether the full stack trace is shown. Atta

Re: no CSS since 5.6.0

2020-09-04 Thread Marcel Schepers
This seems to be a dependency problem. What dependency management tool you use? Until we have a proper fix for that in Tapestry itself, you can add a dependency to org.apache.commons/commons-lang 3:3.4 to your project. Maven 3 is what I am using. Adding the commons-lang 3.4 dependency resolv

version 5.7.0, maven and jetty

2021-02-25 Thread Marcel Schepers
Hello, After upgrading to 5.7.0 I get this error message when trying to run my development version using Jetty's Maven plugin: java.lang.NoClassDefFoundError: org/apache/tapestry5/ioc/Configuration Any ideas what needs to be added to what classpath? Best, Marcel

Re: version 5.7.0, maven and jetty

2021-02-25 Thread Marcel Schepers
7; command that causes the error. Marcel On Thu, Feb 25, 2021 at 1:28 PM Ben Weidig wrote: > Hi Marcel, > > Tapestry 5.7.0 is not a simple drop-in upgrade from 5.6.x and needs manual > migration steps. > A lot of classes, like Configuration, moved to new packages, to make th

Re: version 5.7.0, maven and jetty

2021-02-26 Thread Marcel Schepers
I'm sorry, I'm sorry my fault! A forgotten dependency in one of my Maven modules. Works like a charm now. Marcel On Thu, Feb 25, 2021 at 4:21 PM Ben Weidig wrote: > Ah ok. I don't know much about maven and jetty:run, we run an embedded > jetty as Java applic

General architecture question regarding localization

2006-05-10 Thread Marcel Schepers
I miss an article or Wiki page? For me Tapestry 4 and Hivemind are both new and I am looking for any info on how to handle this. Have a nice day, Marcel

Re: General architecture question regarding localization

2006-05-10 Thread Marcel Schepers
Yes! Excellent, thank you. Marcel On 5/10/06, Hugo Palma <[EMAIL PROTECTED]> wrote: Is this what you need http://wiki.apache.org/tapestry/UsingCustomResourceSource ? On 5/10/06, Marcel Schepers <[EMAIL PROTECTED]> wrote: > > Hello, > > About two years ago there was a

Tapestry 4.0.2 does not deploy out of the box on JDK EE 5

2006-06-03 Thread Marcel Schepers
r if (_modules.containsKey(id)){ // Ignore the duplicate module descriptor _without_ error handling return; } I have changed the 'maven2-dec12-2005' version, also known as ' hivemind-1.2-alpha-1'. Is that the Hivemind 1.1.1 version? Hope this helps for other users. Have a nice da