I m using Tapestry latest final release i.e T18
I m using extjs and tapestry both I had added tapestry component in a tml
page
which also contains extjs component.
When i run tml only tapestry component get rendered and extjs component get
failed in rendering.
My tml page looks as
http://tapest
Hi Otho,
Thanks. I have one configuration, jetty:run, start it, then any changes
made(either to the class or template), I click 'make module' while jetty is
running, it has everything updated too, but this is not live reloading. I
tried your two configuration approach and it's just the same as on
Hi,
As I understand Scala needs only this dependency:
org.scala-lang
scala-library
2.7.3.RC1
how about Groovy?
Howard Lewis Ship wrote:
>
> Pretty much the same story for Groovy. There are still some issues
> related to access to private instance variables and intr
> Pretty much the same story for Groovy. There are still some issues
> related to access to private instance variables and introduced base
> classes.
For the private instace stuff, as I tested in a previous blog post, that
seems to work without to much pain in Scala. Variable just have to be
init
Pretty much the same story for Groovy. There are still some issues
related to access to private instance variables and introduced base
classes.
On Wed, Jan 7, 2009 at 2:43 PM, Chris Lewis wrote:
> wow.
>
> Let me get this straight - to get scala to work with T5, all you did was
> use scala sour
wow.
Let me get this straight - to get scala to work with T5, all you did was
use scala source files and the scala maven plugin??? That's it!?!
If that's all it takes I guess the reason is that scala files compile
directly to normal java classes, and that's all done by maven. Man
that's awesome!
Hello,
I'm building a toy application to see how Scala and Tapestry 5 get
together. The first step was to translate the quickstart application into
Scala (that was a little first step ;).
Scala is a functional/object oriented language that runs on the JVM, and
which I appreciate a lot more than J
Does AppFuse count?
On Wed, Jan 7, 2009 at 8:31 AM, Sid Ferreira wrote:
> Hi all!Few days ago I've met Tapestry in wikipedia... After it, Ive joined
> the #tapestry @ freenode trying to know more about the technology.
>
> I've been talking with Fanf about how tapestry works and got really
> inter
On Wed, Jan 7, 2009 at 7:16 AM, Francois Armand wrote:
> Kalle Korhonen wrote:
>
>> [...] T5 compatible version is in development; no snapshots
>> available but the early example are functional if you check out the trunk.
>>
>>
> That's a great new Kalle ! I'm anger to see what you are doing in Tr
Actually I was wrong in what I wrote in my last email.
addComponent() is NOT being called before getComponent() when the problem
arises.
Mike
From: Mike Wasserman [mailto:mike.wasser...@intelliware.ca]
Sent: Wed 1/7/2009 2:47 PM
To: Tapestry users
Subject: RE:
Hi Avi, did u ever manage to do this? I want to be able to use
spring+hibernate from tapestry without losing what tapestry-hibernate has to
offer. Maybe i am just asking too much? :)
On Thu, May 8, 2008 at 11:02 PM, Avi Cherry wrote:
> So, T5 integrates nicely with Spring (tapestry-spring) and
Multiple pages are afflicted. It appears to happen primarily with the "shell"
component.
We put logging in the getComponent() and the addComponent() methods of the
AbstractComponent class to output the Thread Id and Component Id since the
adding of components and the getting of components see
The _components field should be populated before your code gets invoked.
Without looking at the code, it sounds like a Tapestry bug; but I
can't imagine how a bug like that could have slipped through for so
long that you're the only one who sees it.
Does this happen to only a single page, or are
I added the following code to the AbstractComponent.getComponent(String id)
method:
while(_components == null) {
try {
System.out.println("SLEEPING");
Thread.currentThread().sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
Hi guys,
it's my first time in this mailing list.
My English is very bad but I hope in the intelligence of readers ;)
The .../corelib/components/Errors_it.properties is encoded in ISO-8859-1
and it's a problem because (if I don't misunderstand) tapestry reads the
properties using UTF-8.
At th
I have 2 run configurations, both of type maven.
In the first the field for the maven goal to run contains: jetty:run
(jetty:run-exploded doesn't work with live class reloading.)
In the second the field for the maven goal contains: compile.
I start up the application with the first goal and afte
Tapestry Fans,
I'm slowly getting my head around T5 and Hibernate. I now have a basic
ManyToMany association, faq <-> faqcategory, working. With some test data
I inserted via psql I'm able to loop over the faqcategories and display
the faqs within them. Now, I'm working on faq add/edit func
The distinction is that:
value="${foo}"
evauates the expression foo, converts it to a string, and binds the
value parameter to the string (read only).
value="foo"
binds the value parameter to the expression foo, which is read/write
(assuming there's a setFoo() method).
You can use "${foo}"
Has anyone ever tried to use Tapestry5 and GridGain?
http://www.gridgain.com/product.html#gridgain
Toby
-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache
Haven't seen any updates since november.
T4 has a ton of jiras and geometry issues for custom @Script and *.script
modules.Best regards Ken in nashua
_
Windows LiveTM: Keep your life in sync.
http://windowslive.com/explore?ocid=TX
There are a couple of open source frameworks you can use.
Have a look at equanda ( http://equanda.org/ ). You create your domain
model in xml files and both the database and ui layers are then
generated for you. There is a maven target which builds a base project
for you that you can start fro
Kalle Korhonen wrote:
[...] T5 compatible version is in development; no snapshots
available but the early example are functional if you check out the trunk.
That's a great new Kalle ! I'm anger to see what you are doing in Trails
5. Have you some kind of release time in mind for it ?
--
F
Trails (http://www.trailsframework.org/) offers something similar to this;
basically Trails is about model-driven design. You only need to create your
domain entities (like blog post and comment as in your example) and the
framework creates both the frontend and database from it, both of which you
Sid Ferreira schrieb:
Hi all!Few days ago I've met Tapestry in wikipedia... After it, Ive joined
the #tapestry @ freenode trying to know more about the technology.
I've been talking with Fanf about how tapestry works and got really
interested on it, but once Im coming from PHP/Symfony, I obvious
Hi all!Few days ago I've met Tapestry in wikipedia... After it, Ive joined
the #tapestry @ freenode trying to know more about the technology.
I've been talking with Fanf about how tapestry works and got really
interested on it, but once Im coming from PHP/Symfony, I obviously found
some things tha
Ya .. Its working fine now..
Thanks a lot.
:-)
Andreas Andreou-4 wrote:
>
> See http://tapestry.apache.org/tapestry4.1/usersguide/listenermethods.html
>
> You need to return an ILink from your listener to cause a change to
> the url - otherwise,
> the url describes a directr link and triggeres
See http://tapestry.apache.org/tapestry4.1/usersguide/listenermethods.html
You need to return an ILink from your listener to cause a change to
the url - otherwise,
the url describes a directr link and triggeres the method everytime you refresh
On Wed, Jan 7, 2009 at 7:38 AM, kk4Nabble wrote:
>
>
Hi Avi!
First I've to say I really like tapestry 5 and its huge improvements
over T4. Most of all the live class reloading!
At the moment I am trying to do an integration of T5 with extjs. Till
now it seems to go quite good.
I can render ext components over to the client use informal parame
Avi Cherry wrote:
First off, I want to say that I'm a huge supporter, advocate (and long
time user) of Tapestry, particularly T5.
Hello Avi,
[...] a lot of intersting things
To be honest, the Ajax support on Tapestry 5 is one of the rare things
that seems to be not _just_rigth_ on the frame
29 matches
Mail list logo