Looks like a misconfiguration but if you must, the Shell component
http://tapestry.apache.org/tapestry4.1/components/general/shell.html
accepts an ajaxDelegate parameter that is rendering those...
The default implementation for that delegate is
http://svn.apache.org/viewvc/tapestry/tapestry4/trun
Can anyone point me in the right direction with this, I don't believe
that this can not be done.
Peter Stavrinides wrote:
Hi Everyone
I am trying to deploy a tapestry 4.1 application into a production
environment (on Tomcat 5.5). When the Tapestry Shell component injects
the various dojo scr
Anders Vesterberg vesdakon.se> writes:
>
> Hi
> I am working on a page with a table where background color
> of cell should change dependent upon columnValue. I would
> like to control with different .css. I am experimenting
> with SimpleTableValueRendererSource, but as far as I can
> see th
If I had more duplicate versions of myself and time I'd definitely use
this for charting:
http://archive.dojotoolkit.org/nightly/tests/charting/test_engine.html
The graphics are all rendered in the native format of whatever browser
you are viewing them in, and are completely interactive as
demon
I haven't used it myself but jfreechart appears to be active:
http://www.jfree.org/jfreechart/
On Wed, 24 Jan 2007 22:30:55 +0100, Daniel Jue <[EMAIL PROTECTED]> wrote:
Hi, I wanted to get an idea of what Tapestry people have settled on
when charts needed to be drawn.
The Tap 3 and 4 workbench
Hi
Last time I needed charting I used http://www.liquidx.net/plotkit/.
With it and some javascript glue code the only thing you need to do, is
to render tables with the corresponding values.
Its probably not the most sufficticated solution but it is quite easy to
use.
kind regards,
I am thinking of re-writing jCharts enough to get the
functionality/flexibility I want, but I wanted to hear from the list
first. (Specifically, I want to make Chart implement Serializable and
allow jCharts to directly accept data in datatypes other than
double[][] )
Sorry, I meant "I want to ma
Hi, I wanted to get an idea of what Tapestry people have settled on
when charts needed to be drawn.
The Tap 3 and 4 workbenches use JCharts, which had become Krysalis
Jcharts, which has been abandoned.
I recently played with it and found it to be a lightweight and fast,
although it lacks some thi
Yes:
Ixe's bank portal is done in Tap3, also they have a really big Customer
Assistance System
build on Tapestry.
I will forward this mail to one of the main developers to see what details
we can get.
Regards,
Migs
On 1/24/07, Darío Vasconcelos <[EMAIL PROTECTED]> wrote:
An important part
An important part of the transactional system of the mexican bank IXE (
http://www.ixe.com.mx/) runs over Tapestry, Spring, Hibernate, multiple
databases (Oracle, Sybase, AS/400) and several other interesting things.
While I'm no direct committer for that project, I think I've seen some
people fro
For the clientId binding prefix as well as the correct generation of ids
you need 4.1.1 or (preferably) a 4.1.2-SNAPSHOT
Robert J. Walker wrote:
andyhot wrote:
if you use
then
Nice idea, but it didn't recognize the clientId: prefix for some reason. When I
cha
andyhot wrote:
> if you use
>
> then
> value="ognl:curChoice.label" raw="true"/>
Nice idea, but it didn't recognize the clientId: prefix for some reason. When I
changed it to its ognl equivalent (ognl:components.curRadio.clientId), this is
what rendered for the first radio button:
Yes
Th
if you use
then
Robert J. Walker wrote:
I'm having trouble rendering tags for individual radio buttons in
Tapestry 4.1. Simplified example:
This works fine, except that I'd like for each radio button to have a
tag rendered for it so that the labels are actually c
I'm "the guy from ebay". ;-)
The project I'm working on is probably not as grand as you think, but I
can't really talk about it yet.
There is an eBay company that is using Tapestry (3.0 I believe).
www.carad.com.
CarAd is one of the largest service providers for sellers on eBay Motors
and was a
There is a guy from eBay on the list here-- I think he was working on
a component that used a countdown timer. Some of us suspected it was
for bid snipers, but he mentioned that it was part of a larger
project.
oh, and I think TheServerSide.com uses Tap as well.
On 1/23/07, Howard Lewis Ship
Actually, I can share that we do over 90 million "hits" through Tapestry
per month, where a "hit" is either a page view, AJAX XMLHttpRequest, or
API call to our RESTful webservice.
jeff
-Original Message-
From: Jeff Lubetkin [mailto:[EMAIL PROTECTED]
Sent: Wednesday, January 24, 2007 10:
I really like the contrib:Table component. The content of my table
cell is dynamic and needs to be rendered with a link so I use the
specially-named render blocks to specify how to render the cells.
However, when I do this for the table headers, I loose the ability to
sort. I was wondering if anyo
I'm having trouble rendering tags for individual radio buttons in
Tapestry 4.1. Simplified example:
This works fine, except that I'd like for each radio button to have a
tag rendered for it so that the labels are actually clickable. There doesn't
seem to be a simple way to
Zillow.com is built on Tapestry 4.0.2. As far as I know, we are one of
the two biggest sites running on Tapestry (NHL.com being the
other...they seem to have slightly higher traffic than us during the
hockey season).
Here's Zillow and NHL.com on Alexa:
http://www.alexa.com/data/details/traffic
Hello again,
the component I'm migrating is JFlyEditTable that is an editable grid that
via ajax let you enter a row at a time.
The problem that I'm having with tap 4.1.1 and I hadn't with tacos + tap
4.0.2, is that the second time I try to insert a row I've this message back:
Rewind of form Hom
Thx Richard,
In your opinion whats better/smarter:
1) "ognl:id + '-cg-' + (index * 1 + 1)"
2)"ognl:id + '-cg-' + add(index,1)"
?
On 1/24/07, Richard Clark <[EMAIL PROTECTED]> wrote:
On 1/24/07, Andrea Chiumenti <[EMAIL PROTECTED]> wrote:
> "ognl:id + '-cg-' + (index + 1)"
>
> the index is an
On 1/24/07, Andrea Chiumenti <[EMAIL PROTECTED]> wrote:
"ognl:id + '-cg-' + (index + 1)"
the index is an int property.
I expect the result to be:
comp-cg-1
etc. but instead I've back
comp-cg-01
It's ugly, but one answer is "ognl:id + '-cg-' + (index * 1 + 1)",
using the multiplication to fo
hello,
I have an ognl expression inside a @For component and I'm using tap 4.1.1
"ognl:id + '-cg-' + (index + 1)"
the index is an int property.
I expect the result to be:
comp-cg-1
comp-cg-2
comp-cg-3
etc. but instead I've back
comp-cg-01
comp-cg-11
comp-cg-21
How to sum index + 1 and append
You can make the same thing with the @Component annotation in your Java
code.
--
Stéphane Decleire
Ken nashua a écrit :
Ok, Stephanie... thanks for the response...
On your last block...
The last thing you need to do is to bind the persistent property of
your page in the parameter of your c
[update]
i just discovered that the Javascript code gets generated
again for every iteration of the For component... but the
event reaches the java class at most twice.
hope this helps
Kristian
Hi,
the DIV element within the For component has an @EventListener
attached. When i click on it my listener method SOMETIMES gets invoked
more than once!!! (twice)
This happens in 4.1.1 and 4.1.2-SNAPSHOT (20070121).
>From the generated HTML page i can see that the Javascript code
for attaching
Ok, Stephanie... thanks for the response...
On your last block...
The last thing you need to do is to bind the persistent property of your
page in the parameter of your component. That can be done in your html
page, in the .page file or inthe java code using annotations. Let's say
your compone
Hi all,
I am also facing the same problem...
is there any way to disable validation for some button clicks ?
Reto Hotz wrote:
>
> Hello,
>
> I have a @Form with a validationDelegate. Inside this form there is a
> custom component. There are also several @TextFields with
> validators-rules af
Hi,
I would start with just "plain old" Tapestry really, and only integrate
other frameworks/librarys when the need for them arises. I find that
(especially when you are learning) too much frameworkiness only confuses
things.
Greets, Michael
[EMAIL PROTECTED] schrieb:
I am starting from scr
I am starting from scratch with a new Tapestry project...but
I am spoilt for choice and can not decide which Tapestry project
to take to start with:
- the Cognition Framework?
- HoneycombLib?
- AppFuse ?
- JumpStart?
- Tapernate?
The problem with Tapestry is maybe that there is so many decisions
Len, this is exactly what I have been doing... I have spent nearly a
year on this project and I am still learning new stuff every day. Most
of my problems are deployment and configuration related though (I seem
to spend more time on this than anything else). I love this stuff but it
is highly u
Hi Everyone
I am trying to deploy a tapestry 4.1 application into a production
environment (on Tomcat 5.5). When the Tapestry Shell component injects
the various dojo scripts into my pages it uses an absolute URL using the
server IP address and port, there must be a way to switch this off and
On Wed, 2007-01-24 at 10:09 +0100, Cyrille37 wrote:
> Hello Len,
>
> Marilen Corciovei a écrit :
> > I think you should arm yourself with lot of patience. We are doing here
> > a development which involves Tapestry as interface and various JBoss
> > services and EJB3
> >
> It's what I will hav
Hi *,
After running my tap 4.0.2 application for several days without errors, I
always get the exception below.
englisch.gif is a static resource which is processed by an @Asset annotation.
Normally this works.
After I saw this exception several times, the application, i.e. even the whole
ap
Hello Len,
Marilen Corciovei a écrit :
I think you should arm yourself with lot of patience. We are doing here
a development which involves Tapestry as interface and various JBoss
services and EJB3
It's what I will have to do soon ...
I think most problems we have had where related to:
- va
That's why some people didnt like friendly/clean urls
Original-Nachricht
Datum: Wed, 24 Jan 2007 08:46:48 +0100
Von: "Peter Schröder" <[EMAIL PROTECTED]>
An: "Tapestry users"
Betreff: AW: WANTED: Tapestry Success Stories
> how about doin a google search "inurl:service=page"
Maybe these WIKI pages can help:
http://wiki.apache.org/tapestry/PoweredByTapestry
http://wiki.apache.org/tapestry/SuccessStories
-Ursprüngliche Nachricht-
Von: Mark [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 24. Januar 2007 05:56
An: Tapestry users
Betreff: Re: WANTED: Tapestry Succ
thanks everybody
On 1/24/07, Peter Schröder <[EMAIL PROTECTED]> wrote:
hi,
i remember a thread about encryption some time ago.
the essence of it was, that you send the parameters as is and add an encrypted
hash of your parameters with it, so that you can be sure nobody modified them.
thats a
38 matches
Mail list logo