Hi James,
Consider that a dispatcher/request filter enables you to remove security
concerns from your pages, this has several advantages, i.e.: separation of
concerns, extensibility, and pipelining, which can be extremely useful for
layered security, take for instance this use case:
- Authenti
The ability to change your .tml and .java classes (for components and
pages) and have them take effect without a restart.
Christian.
On 21-Jan-09, at 21:17 , CG wrote:
hi, thx for your effort ...
I hv been using jumpstart for 9 months .. and I hv ported the older
version of jumpstart to run
Hello,
I looked into the javascript and it seems quite embedded with the whole
tapestry object etc(I even tried just outputting a button using the checkbox
code but that didn't work, it may need an onchange event fired or
something).
I looked at the docs on FormFragment and it has a tidbit: The f
hi, thx for your effort ...
I hv been using jumpstart for 9 months .. and I hv ported the older
version of jumpstart to run on Apache Geronimo (which use openjpa ..)
... and now openjpa support is built-in .. yeah !
I would plan to upgrade to jumpstart 4.0 , on Apache Geronimo - jetty
..., would
Em Wed, 21 Jan 2009 22:36:45 -0300, Sid Ferreira
escreveu:
http://pastebin.com/m43c165fd
didn't included database, components or pages, just what matters.
If something else is needed, tell me :D
As I said before,
"By the way, I think there's an error in this constructor:
public AccessCon
http://pastebin.com/m43c165fd
didn't included database, components or pages, just what matters.
If something else is needed, tell me :D
On Wed, Jan 21, 2009 at 10:01 PM, Sid Ferreira wrote:
> Ive copy pasted most of code.UserSession (interface) and UserSessionImpl
> (class) are almost empty,
Em Wed, 21 Jan 2009 22:07:20 -0300, manuel aldana escreveu:
yes, it is a bit confusing that you could do your layout-concept
directly as a page (see starter mail of thread). But I see now it is not
a good idea, so will go for layout as a component :)
Technically speaking, I think it would
Em Wed, 21 Jan 2009 22:01:43 -0300, James Sherwood
escreveu:
You are like our own little tapestry tutor, and its MUCH appreciated:)
I'm just a guy who wants to bring sanity and pleasure and elegance
(Tapestry 5!) to the Java Web development world . . . :) And a guy with a
little too muc
Thiago H. de Paula Figueiredo schrieb:
When people here talk about a Layout component, we are talking about
something described by the Tapestry documentation as "A Layout
component exists to provide common content across all pages in your
application.". A Layout is a component, not a page, at l
You are like our own little tapestry tutor, and its MUCH appreciated:)
> I don't think this would be possible only using the built-in Tapestry
component, but I wish I am wrong. :)
Before I go looking into the code, would it be possible to build one whereby
you just click an image to change hidden
Em Wed, 21 Jan 2009 21:46:20 -0300, manuel aldana escreveu:
OK, but why does the layout component need to know what the main content
is?
If it is a layout, yes. Otherwise, it would be an ordinary page.
As in other mail mentioned the only (but major) cons I can see is that
making the Layou
Thiago H. de Paula Figueiredo schrieb:
Em Wed, 21 Jan 2009 21:30:42 -0300, manuel aldana
escreveu:
looking at this layout injection pattern, i wonder whether a normal
template, which references the dynamic site-parts directly wouldn't
be even easier (i at least find it more intuitive as usin
Hi all,
I have just started with Tapestry 5 (having previously used versions 3 and 4),
and have found that while I like the new client-side validation bubbles, they
are very distracting and annoying when they appear for every focus change
between form fields.
So my question is - does a
Em Wed, 21 Jan 2009 21:30:42 -0300, manuel aldana escreveu:
looking at this layout injection pattern, i wonder whether a normal
template, which references the dynamic site-parts directly wouldn't be
even easier (i at least find it more intuitive as using the
injection). what are the pros/
Maybe reason is page flexibility. With below template the target address
would always be the same page http://host/site, which is quite static.
But when using the wrapper pattern the callee would be the page (e.g.
http://host/login, http://host/item). this would feel more natural and
layout it
https://issues.apache.org/jira/browse/TAP5-265
On Thu, Jan 22, 2009 at 2:41 AM, Thiago H. de Paula Figueiredo
wrote:
> Em Wed, 21 Jan 2009 20:15:01 -0300, Fernando Padilla
> escreveu:
>
>> thank you. :)
>
> Gracias de novo! :)
>
>> onSuccess would be WAY too late. :) The whole point to have hid
thanks for the link.
looking at this layout injection pattern, i wonder whether a normal
template, which references the dynamic site-parts directly wouldn't be
even easier (i at least find it more intuitive as using the
injection). what are the pros/cons for that?
Site.tml (style stuff omit
Ive copy pasted most of code.UserSession (interface) and UserSessionImpl
(class) are almost empty, just the method in the link returning true always.
The binding I tried with the binder, before the binding of the application.
Thiago: I've readed it and there's no problem, but when a copy-paste fa
Em Wed, 21 Jan 2009 20:15:01 -0300, Fernando Padilla
escreveu:
thank you. :)
Gracias de novo! :)
onSuccess would be WAY too late. :) The whole point to have hidden
variables is to make sure state is carried through so that we have
something to work with.. :)
It just happened to me t
thank you. :)
onSuccess would be WAY too late. :) The whole point to have hidden
variables is to make sure state is carried through so that we have
something to work with.. :)
thank you for pointing out Chenillekit, maybe I'll look into it, but we
already had to create our own HiddenField,
Em Wed, 21 Jan 2009 19:47:55 -0300, Fernando Padilla
escreveu:
Since if I use a form context, then I think I have to then create a
special event listener to deal with that context right?
onActionFromForm(context)...
Not right! :) It would be passed to you onSuccess method, AFAIK.
I just
Em Wed, 21 Jan 2009 16:17:29 -0300, Angelo Turetta
escreveu:
I think what you ask is feasible: it's not that different from what is
done by BeanEditForm, just the source of the field list is not
determined by reflection but loaded from an external source.
I agree it would be a nice additi
.. but yet not really..
Since if I use a form context, then I think I have to then create a
special event listener to deal with that context right?
onActionFromForm(context)...
I just want to add hidden fields, and have the component take care of
serializing and deserializing the values appr
Em Wed, 21 Jan 2009 16:23:45 -0300, Sid Ferreira
escreveu:
Based on http://wiki.apache.org/tapestry/Tapestry5HowToControlAccess Im
getting this error... Why?
As any error in Java, the first thing to do is to look at the stack trace:
No service implements the interface
tibox.allert.fastSu
Em Wed, 21 Jan 2009 15:16:45 -0300, Jonathan O'Connor
escreveu:
Hi,
I have a grid, and I want the user to be able to click on a row to
select it.
I know I can add a link to each cell, but that's not very nice, as the
link only works if you click on text, and there could be plenty of
whi
Em Wed, 21 Jan 2009 15:01:38 -0300, kristjankelt
escreveu:
Hello,
Hi!
Is it possible to use a ComponentClassTransformWorker approach also for
services?
Wouldn't service decoration (aspect-oriented style) provide what you need?
Take a look at
http://tapestry.apache.org/tapestry5/tape
Em Wed, 21 Jan 2009 14:43:31 -0300, Fernando Padilla
escreveu:
So.. Is there really ho HiddenField component for Tapestry 5?
Is this just a minor oversight, or is there a different way to add
values to be passed through form?
One option is to use Form's context parameter. AFAIK, it works
Em Wed, 21 Jan 2009 15:36:21 -0300, James Sherwood
escreveu:
Hello,
Hi!
1: I am using a checkbox for the modify feature but I would like to have
an image or text at the very least, is this possible?(I couldn't find a
base
component to satisfy this)
I don't think this would be possib
I'm guessing from this:
java.lang.RuntimeException No service implements the interface
tibox.allert.fastSupport.services.UserSessionImpl.
That you're binding the implementing class instead of the interface class.
Carl
Chris Lewis wrote:
And also how exactly you bind your service implementati
It is 1:1 the text from the mailing list as far as I remember..just with a
formatted table on the Wiki.
So you mean it could work by extending BeanEdit Form?
Anyway, so I think, considering the time to do this, it was a good decision to
use Wicket for this part and T5 for the frontend part...s
I don't understand why the radiogroup component doesn't have a validate
field like the other form field components ...
And what is the prefered way to set a radiogroup field as required ?
Stephane
And also how exactly you bind your service implementation in your app
module.
Stephane Decleire wrote:
Hi
Could you show us the code of your class
tibox.allert.fastSupport.services.UserSessionImpl ?
Stephane
Sid Ferreira a écrit :
Based on http://wiki.apache.org/tapestry/Tapestry5HowToCo
Hi
Could you show us the code of your class
tibox.allert.fastSupport.services.UserSessionImpl ?
Stephane
Sid Ferreira a écrit :
> Based on http://wiki.apache.org/tapestry/Tapestry5HowToControlAccess Im
> getting this error... Why?
>
>
> java.lang.RuntimeExceptionException constructing service 'M
Based on http://wiki.apache.org/tapestry/Tapestry5HowToControlAccess Im
getting this error... Why?
java.lang.RuntimeExceptionException constructing service 'MasterDispatcher':
Error invoking service builder method
org.apache.tapestry5.services.TapestryModule.buildMasterDispatcher(List) (at
Tapest
superoverdr...@gmx.de wrote:
I have put it on the Wish List are there does not seem to be a solution yet?
It's not actually evident what you added to that page, given
superoverdrive <> Toby.
For others' reference, your addition is:
http://wiki.apache.org/tapestry/WishList?action=diff&rev
Thanks, that worked just fine.
I was looking for more complicated solutions and overlooked the simple.
On Wed, Jan 21, 2009 at 5:57 PM, Lubor Gajda wrote:
> Have you tried prototype Event.observe() function? For instance you could
> use something like this:
>
> Event.observe(formId, 'submit', fu
> Be sure it is well written. Sometimes there are some messages so badly
> written or so vague that people just don't take the time to even
> understand them.
I think this should be clearly written:
http://wiki.apache.org/tapestry/WishList?highlight=(wishlist)
I have put it on the Wish List
Hello,
I have it created but I have a few questions(code is below):
1: I am using a checkbox for the modify feature but I would like to have an
image or text at the very least, is this possible?(I couldn't find a base
component to satisfy this)
2:I don't like the big red ugliness of the built in
Hi,
I have a grid, and I want the user to be able to click on a row to
select it.
I know I can add a link to each cell, but that's not very nice, as the
link only works if you click on text, and there could be plenty of
whitespace in the row.
I see there is a GridRows component, which is part
Hello,
Is it possible to use a ComponentClassTransformWorker approach also for
services?
Kristjan Kelt
--
View this message in context:
http://www.nabble.com/ClassWorker-for-Services-tp21588669p21588669.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
--
Have you tried prototype Event.observe() function? For instance you could
use something like this:
Event.observe(formId, 'submit', function() {
// your onsubmit actions
});
I'm not sure if this is the best way to do this, but it could work.
On Wed, Jan 21, 2009 at 5:45 PM, Hugo Palma wrote:
I'd like to execute some javascript on form submit but it seems that
Tapestry is setting the onsubmit event of the form for performing client
side validation so whatever i place on the "onsubmit" attribute gets
ignored.
Any idea how i can execute some javascript on submit right after the
Tapestry
So.. Is there really ho HiddenField component for Tapestry 5?
Is this just a minor oversight, or is there a different way to add
values to be passed through form?
-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
Em Wed, 21 Jan 2009 14:08:09 -0300, James Sherwood
escreveu:
Thanks a bunch,
:)
I was actually looking at the screen cast on Ajax and Zones as I
suspected this would be accomplished with zones.
You can do a lot with them. Just be creative. :)
Ideally what I would like to do is create
Thanks a bunch,
I was actually looking at the screen cast on Ajax and Zones as I suspected
this would be accomplished with zones.
Ideally what I would like to do is create this but have it just output the
value with a small edit button and a hidden text field. When you click the
edit button it s
Em Wed, 21 Jan 2009 13:15:11 -0300, Tobias Marx
escreveu:
Yes, but Screencasts only show you easy examples you can do those do
what you see in those screencasts and it works wonderfullybut then
you want to move on and change something, e.g.
additional columns in a table or dependin
Em Wed, 21 Jan 2009 12:20:33 -0300, James Sherwood
escreveu:
I need this page to be dynamic whereby and admin can change fields
without refreshing the page.
Not refreshing a page => AJAX!
Put your Form inside a Zone and submit the form through AJAX.
Something like:
Em Wed, 21 Jan 2009 12:03:04 -0300, Tobias Marx
escreveu:
I know many people who have started with Tapestry, but reached a point
with "no solution" and resorted to another framework as they were in a
hurry to "get it done".
Did these people post their questions in the mailing list? Once
Em Wed, 21 Jan 2009 10:59:41 -0300, Sid Ferreira
escreveu:
1) Create a MyContextService, wich has an ApplicationState object
Tapestry-IoC services cannot use the @ApplicationState annotation. If they
need to access ASOs, they need to use the ApplicationStateManager.
2) Create a @Privat
it's not ok with this solution
But finally I format all data before sending to Tapestry. So it's ok now.
For the problem "adding automatically the carriage return " I use
white-space: nowrap;
Thank you a lot for your help
Have a nice day
Cathy
James Sherwood wrote:
>
> Hello,
>
> Readi
Yes, but Screencasts only show you easy examples you can do those do what
you see in those screencasts and it works wonderfullybut then you want to
move on and change something, e.g.
additional columns in a table or depending on user roles, locales depending on
the domain, you want to ch
> I know many people who have started with Tapestry, but reached a point with
> "no solution" and resorted to another framework
I reached that point when it was announced that T5 would not be backward
compatible with T4... at that point I had invested a couple of years in
Tapestry, and was maint
Hello,
Reading your last post I think your problem is this:
Should be:
Because components.pagesTable.tableRow.column2Column doesn't exist,
components.pagesTable.tableRow.column2 does. And column2Column is just a
java me
In the case you don't understand my problem, I explain :
"components.pagesTable.tableRow.column2" exists
I have to format the column, so for the TABLE, I writed =column2Column like:
column2Column is a java method who retrieves the
components.pagesTable.tableRow.column2 value i
Hello,
I am trying to create an application that just has a single page basically
with many fields about a member.
I need this page to be dynamic whereby and admin can change fields without
refreshing the page.
The T5Component InPlaceEditor sort of works however there is no validation
a
Hello,
Unfortunately I do not have T4 experience with these components.
It cannot find that property so perhaps you have the path wrong.
If you send your 3 files to my email I will look at them and see if I can
help.
--James
-Original Message-
From: Cathy_123 [mailto:ndgt...@yahoo.
In the long-term it is better though if every developer provides an example to
the code he has done.
This way the community grows and also the number of potential developers...even
if new developments and bugfixes take longer.
I know many people who have started with Tapestry, but reached a poin
I get
Unable to read OGNL expression '' of ..
ognl.NoSuchPropertyException
Stack Trace:
ognl.ObjectPropertyAccessor.getProperty(ObjectPropertyAccessor.java:123)
ognl.OgnlRuntime.getProperty(OgnlRuntime.java:1616)
ognl.ASTProperty.getValueBody(ASTProperty.java:96)
ognl.SimpleNode.evaluat
>Everyone can contribute by writing an improvement
Absolutely!
Tapestry is community driven with a small team of developers... they have
limited time and simply can't do it all. The documentation task should be given
to the community and done Wiki style. There are many people answering questions
Hello,
What is the exception you are getting?
--James
-Original Message-
From: Cathy_123 [mailto:ndgt...@yahoo.com]
Sent: January-21-09 9:40 AM
To: users@tapestry.apache.org
Subject: [Spam Rating:3.18] RE: [Spam Rating:3.18] Re: Table and carriage
return
Thank you for this issue, It's
Thanks for your willingness to help.
My Direct link looks like this:
JSON Test
Where LuceneFieldData is the name of my component. It implements IJSONRender
and has a renderComponent method that uses a IJSONWriter.
The RawUrlLinkRenderer throws a class cannot be found exception. I'm
guessing t
I don't think that someone has to be appointed to do it. Everyone can
contribute by writing an improvement, opening an issue in JIRA and
attaching the improvement to it.
As to the book you mentioned, I think the initiative came to a halt
again, shortly after it was started.
Uli
Newham, Came
Hi folks!After a while Im writting again, I hope this time with enough
details.
My mission was buid a small support screen where a user logs and has access
to a list of users of the client.
The details:
1) The url is used to define the client (a.t5.com is one and b.t5.com is
another client)
2) The
Thank you for this issue, It's OK for the carriage return but I have a little
problem again
I have to format the value of the column. Instead to do
I do
because column2 is a List of data. So with the code java, I use
ITableColumnEvaluator and read the li
Hi!
I've been learning how to write property edition/visualization blocks
for BeanEditor and BeanEditForm. Using @Environmental private
PropertyEditContext editContext; I'm able to get the property being
edited and it's value. How could I get the object being edited? (The
one passed to the object
Hello,
I have not used T4 going from T3 to T5 but I assume most of the components
are the same.
If you are using the standard insert component you can just declare the raw
parameter as true so you output is changed in any way:
TRUE
--James
-Original Message-
Sid Ferreira wrote:
[...]
With this small testimonial, I want to thank a lot to all members (freenode
guys specially) for being patient and friendly, I hope soon I have time to
write up a simple and clean tutorial about T5 and maybe can help up it to
grow (it may have more php developers trying
I think we are all in agreement that the documentation needs a radical overhaul
(and lots to be written).
The next question is, who is going to do it?
A while ago someone proposed a book on T5. A small group from here organised a
separate discussion group and went off to work on it (I have no i
Thank you for your answer, but I use Tapestry 4, are there another solutions
or I have to change the version ? It's a project of my company so it's
difficult to change ...
Thank you for your help
cathy
Olivier Jacquet wrote:
>
>
> Here is a possible answer to your first issue:
> http://tap
Thank you for your answer, but I use Tapestry 4, are there another solutions
or I have to change the version ? It's a project of my company so it's
difficult to change ...
Thank you for your help
cathy
Thiago HP wrote:
>
> On Wed, Jan 21, 2009 at 8:40 AM, Cathy_123 wrote:
>
>> I set these
Hi everyone!Im writting to talk about my impressions after 1 week (6 work
days) of Tapestry.
I study and work with programming since 98, when I started with Turbo
Pascal. In 2003 I've met PHP and seen that web programming was what I want
to do. Since of it I've been working in bigger and bigger p
On Wed, Jan 21, 2009 at 8:40 AM, Cathy_123 wrote:
> I set these values on the java code and I try to add ' \n\r' or '\r\n' or
> '' on the string but tapestry
> doesn't understand this carracters. Do you know how to do it ?
HTML completely ignores newline (\n, \r) characters unless they're
surro
Here is a possible answer to your first issue:
http://tapestry.apache.org/tapestry5/tapestry-core/ref/org/apache/tapestry5/corelib/components/OutputRaw.html
Olivier Jacquet wrote, On 21/01/2009 11:50:
The second issue can be solved with css and the white-space property:
http://www.w3.org/TR/C
The second issue can be solved with css and the white-space property:
http://www.w3.org/TR/CSS21/text.html#propdef-white-space
The first issue is probably because you are escaping the elements.
I don't know how you turn that off for a property in Tapestry by heart
but it should be quite easy
Hello everybody,
I would like to do a table and in one column, I have several lines that I
would like to show on several lines. Something like that:
--
| header 1 | header 2 | header 3 |
--
| hello 1
Hi,
also a guide/recipes/good practices/tips/chapter for converting JSP
applications to Tapestry 5 would be very welcome. At least a paragraph
clarifying questions like: "Can I have JSPs in my Tapestry 5 application or
do I have to have two web applications talking somehow to each other?", "How
to
Thanks Andreas, this worked.
Uli
Andreas Andreou schrieb:
Not sure of the 100% correct process, but when running (in tapestry-core)
mvn -Dmaven.test.skip compile
there are some additional sources generated in target/generated-sources/antlr
I guess those need to be included in eclipse source pa
77 matches
Mail list logo