Can you post DataManaging.tml
> Caused by: org.xml.sax.SAXParseException: Element or attribute do not match
> QName production: QName::=(NCName':')?NCName.
The 'production' part seems odd.
Cheers,
Andi.
-
To unsubscribe, e-ma
so this?
FooFacade {
@CommitAfter
public void saveSomething(Something something) {
doSaveSomething(something);
}
@CommitAfter
public void saveAListOfSomethings(List somethings) {
for (Something something : somethings) { doSaveSomething(something); }
}
private void doSaveSomething(Somethi
On Wed, 07 May 2014 03:51:12 -0300, mailingl...@j-b-s.de
wrote:
It looks like the library mapping name is causing this effect: in case
the name begins with a digit as first character like "1st" component
rendering fails. Using "first" instead fixes the problem and everything
works as exp
Greetings,
I've been looking deep into Tapestry's localization mechanisms, especially with
regards to "skinning".
What I'm looking for now, is an easier (automatic) way to set the selector
per-request ahead of time via the passivate functions.
Sorta like this:
@LocaleAxis
public
enum MyAxis
Hi Thiago,
I wasn't aware there could be additional consequences, so thanks for the
information.
mrg
On Wed, May 14, 2014 at 3:37 PM, Thiago H de Paula Figueiredo <
thiag...@gmail.com> wrote:
> On Wed, 14 May 2014 11:02:24 -0300, Michael Gentry
> wrote:
>
> Generally, yes, but sometimes you
Why not specify the format to use in the i18n properties file for the template?
Then your java code can read in the date string from he property file. Tapestry
makes this über simple, just inject the Messages object (see
http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/ioc/Message
Put your layout.css into META-INF/assets/css
and call it via
@Import(stylesheet = {"css/layout.css"})
thats all
2014-05-08 15:10 GMT+02:00 George Christman :
> Hi everyone, I'm getting the following error,
>
> (AssetSourceImpl.java:188) - Packaging of classpath assets has changed in
> release
Greetings,
I've run into a case where I must be able to tell if the current request is a
page-render request, or component-event request from within an onActivate()
function.
Is there a common/easy/concise way to do this?
Something like:
public
class MyPage
{
@Inject
private
Hi everyone, I'm getting the following error,
(AssetSourceImpl.java:188) - Packaging of classpath assets has changed in
release 5.4; Assets should no longer be on the main classpath, but should
be moved to 'META-INF/assets/' or a sub-folder. Future releases of Tapestry
may no longer support assets
On Fri, 16 May 2014 15:01:13 -0300, Robert Hailey
wrote:
Greetings,
Hi!
I've run into a case where I must be able to tell if the current request
is a page-render request, or component-event request from within an
onActivate() function.
Is there a common/easy/concise way to do this?
Maybe try this?
http://tapestry.apache.org/5.3.7/apidocs/org/apache/tapestry5/services/ComponentEventLinkEncoder.html#decodeComponentEventRequest(org.apache.tapestry5.services.Request)
On Fri, May 16, 2014 at 10:01 PM, Robert Hailey wrote:
>
> Greetings,
>
> I've run into a case where I must b
It turns out that running an event handler (onProvideCompletionsFrom)
in the same component/page may result in various race condition problems.
Suppose you have a complex form and data initialization occurs during
onActivate phase. Then, this initialization is going to happen every time
onProv
Could you cache your hibernate results for subsequent calls?
- Original Message -
From: Ilya Obshadko
To: Tapestry users
Sent: Thursday, May 08, 2014 1:33 PM
Subject: autocomplete data source
It turns out that running an event handler (onProvideCompletionsFrom)
in the sa
Lance Java wrote:
> I'm not sure how you have assumed that tapestry knows how understand a
> "format:" binding prefix. Certainly none of the tapestry documentation
> mentions it?
I was trying to extrapolate from this:
http://wiki.apache.org/tapestry/Tapestry5HowToFormatDateTimeEtc
Really, I wa
We are using Tynamo's RESTEasy integration with various js libraries,
including ExtJs. We deploy it as a single war, however our build is a bit
more complicated since our main codebase is more of a skeleton, and we use
War overlays for specific implementations. In the end it's all one war
with al
I have a time picker component I need to pass an array of dates to. The picker
will use the dates to choose whether displayed hours and minutes are
selectable. I want all the disabling/enabling code to be client side.
Do I pass data to the js functions in my regulra component in the same way as
Hi Ilya,
onActivate() gets called for both normal page render requests and AJAX/XHR
requests (used by the autocomplete). Have you tried:
@Inject
private Request request;
and calling the isXHR() method in request in your onActivate() to determine
if the request is normal or AJAX?
onActivate()
{
https://issues.apache.org/jira/browse/TAP5-2331
Thank you for the response everyone. Interesting..I never realised that
myself :-)
On Wed, May 14, 2014 at 9:37 PM, Thiago H de Paula Figueiredo <
thiag...@gmail.com> wrote:
> On Wed, 14 May 2014 11:02:24 -0300, Michael Gentry
> wrote:
>
> Generally, yes, but sometimes you need access to metho
19 matches
Mail list logo