I agree. I'm using tapestry-ioc in a new UI framework I'm building
for desktops, and this is really helping out.
Christian.
On 9-Nov-07, at 5:52 PM, Andy Huhn wrote:
Howard,
Excellent documentation! I'm a newbie to the world of Tapestry, IoC,
and front-end development in general (my backg
Selenium from OpenQA works great: http://www.openqa.org/ .
-Ben
On Nov 9, 2007 3:02 PM, Angelo Chen <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I'm looking for a software to automate web page testing, any good one for
> T5? Thanks.
>
> A.C.
> --
> View this message in context:
> http://www.nabble.com
Hi,
I'm looking for a software to automate web page testing, any good one for
T5? Thanks.
A.C.
--
View this message in context:
http://www.nabble.com/T5%3A-testing-software--tf4780586.html#a13676799
Sent from the Tapestry - User mailing list archive at Nabble.com.
---
Howard,
Excellent documentation! I'm a newbie to the world of Tapestry, IoC,
and front-end development in general (my background is ETL
development--large batch loads of data between different systems). I've
struggled for weeks to piece concepts together from the documentation
and examples I cou
That is very odd, I can't think of anthing that would cause that to happen.
On Nov 8, 2007 8:53 AM, Daniel Jue <[EMAIL PROTECTED]> wrote:
> My application fails in IE6 after I changed the following code in my
> login component. (I moved the validation required into an annotation
> instead of in th
The Grid component includes a setCurrentPage() method. You may want
to invoke that after performing your search. The current page is, in
fact, stored persistently by the Grid component.
On Nov 9, 2007 1:42 PM, Marcus <[EMAIL PROTECTED]> wrote:
> Hi Marcelo,
>
> I have the same problem :(
>
> Mar
I haven't documented how to create Tapestry component libraries yet.
Been kind of dragged all over the place.
In your AppModule class, add something like:
public static void
contributeComponentClassResolver(Configuration
configuration)
{
configuration.add(new LibraryMapping("commo
Hi Marcelo,
I have the same problem :(
Marcus
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi,
Is there anyway to configure validation for a BeanEditForm other than with
the Validate annotation? I'd like to have validation, but really can't
apply the annotations because I'm working with classes coming out of a
library.
I was hoping to be able to do this via the BeanModel, but I can't
Sorry, I misunderstood the original question. Andy's answer should be more
helpful.
--
Kevin
On 11/9/07 11:13 AM, in article [EMAIL PROTECTED], "Peter
Stavrinides" <[EMAIL PROTECTED]> wrote:
> Thanks Kevin, but that didn't work?
>
> Kevin Menard wrote:
>> Change listener="listener:formSubmit
the topics are very interesting, but seem hard when first reading...
the text can be expanded bit more for easier understanding.
I've read this page few times
http://tapestry.formos.com/nightly/tapestry5/tapestry-ioc/cookbook/patterns.html
and currently can only think of:
add link to Chain of com
They are... but that one is a reserved parameter
See http://tapestry.apache.org/tapestry4.1/components/form/form.html
On 11/9/07, Peter Stavrinides <[EMAIL PROTECTED]> wrote:
> Okay I will try this but the question remains, shouldn't informal
> parameters render by default? according to the d
Looks good, but having it split into linkable sections would be useful if
folks can't read the whole thing at once (same or multi-page).
On Nov 9, 2007 10:09 AM, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:
> I've been working on new documentation about Tapestry IoC (similar
> stuff will be comin
Anyone on this? I can not get it to work
Maximilian Weißböck wrote:
>
> I'm just starting with T5 and did my first experiments with 5.0.5 and now
> upgraded to 5.0.6.
> I used Howards tutorial, and as far as I can remember, the localization of
> Enums inside BeanEditForm just worked.
>
>
I've been working on new documentation about Tapestry IoC (similar
stuff will be coming for Tapestry core):
Overview:
http://tapestry.formos.com/nightly/tapestry5/tapestry-ioc/overview.html
Cookbook:
http://tapestry.formos.com/nightly/tapestry5/tapestry-ioc/cookbook/index.html
Feedback is enco
Okay I will try this but the question remains, shouldn't informal
parameters render by default? according to the documentation the @Form
component supports informal parameters.
Peter
Andreas Andreou wrote:
http://www.nabble.com/AjaxSubmit-with-confirm-t3776797.html
dojo.event.connect(doj
http://www.nabble.com/AjaxSubmit-with-confirm-t3776797.html
dojo.event.connect(dojo.ById('link'), "onclick", function(e) { if
(!confirm('Are you sure?') e,preventDefault(); } );
Do something similar for the form...
On 11/9/07, Peter Stavrinides <[EMAIL PROTECTED]> wrote:
> From looking at the i
From looking at the in the output it appears that the informal
parameters are not being rendered on my form tag? any ideas?
Peter Stavrinides wrote:
I want to run some custom JavaScript validation functions before the
submit listener is called, something like this:
function validateForm(o
Thanks Kevin, but that didn't work?
Kevin Menard wrote:
Change listener="listener:formSubmit" to success="listener:formSubmit"
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Change listener="listener:formSubmit" to success="listener:formSubmit"
--
Kevin
On 11/9/07 4:24 AM, in article [EMAIL PROTECTED], "Peter
Stavrinides" <[EMAIL PROTECTED]> wrote:
>
> I want to run some custom JavaScript validation functions before the
> submit listener is called, something like
Hi, I have a page where I am using the FCKEditor. The FCK editor is working
correctly. I have a floating pane popup whenever a user clicks on an icon
on the same page but it defined on a different component which is included
in the page. Whenever I pop it, FCKEditor is rendered as many times as I
Hello,
I would like to upload a file using a tapestry form. I have followed the
example presented here:
http://tapestry.apache.org/tapestry5/tapestry-upload/
HTML :
JAVA :
public class UploadExample
{
private UploadedFile _file;
publi
Hello,
I would like to upload a file using a tapestry form. I have followed the
example presented here:
http://tapestry.apache.org/tapestry5/tapestry-upload/
HTML :
JAVA :
public class UploadExample
{
private UploadedFile _file;
Howard,
Another thing that would be helpful here...to make the MarkupWriter a
property that the component could replace in BeforeRender with its own
local MarkupWriter, allow the body to render into the temporary
MarkupWriter, and then in AfterRender, put the original MarkupWriter
back in place ag
I want to run some custom JavaScript validation functions before the
submit listener is called, something like this:
function validateForm(obj){
//checks go here
return false;
}
delegate="ognl:
Hello,
still trying to use the GridRows component.
Can someone give an example for a GridModelProvider or the GridRows
component?
Well, the Grid is an implementation of GridModelProvider but I would like to
customize my rows.
Thanks,
Carsten
(Thread relates to T5.0.6 - How to use GridRows)
--
26 matches
Mail list logo