I do not have an easy solution to your problem.
The following is just an idea which I have not tested.
Have you considered 'extending' the component
TextField
to hava an extra boolean parameter 'validation flag'
?
The idea is that validation is skipped according to
the
'validation flag'. In you
bėgantis debesis wrote:
Hi,
to simplify a problem, let's say i have a @Checkbox and many @Text
components in a form.
I want no validation when the checkbox is checked, and validation must be
executed, when form is submitted with the checkbox not checked. @Text
component contents must be validate
Labas Aleksej, Hi Shing,
thanks for the answers.
I think Aleksej's solution is simpler and it fits. But the bad thing is i'll
have to say a good bye to client side validation..
Valdemaras Repšys
On 7/3/06, Aleksej <[EMAIL PROTECTED]> wrote:
bėgantis debesis wrote:
> Hi,
>
> to simplify a prob
You can either:
1) Do all the validation in your listener (on the Java side), or
2) Write your own client-side valdation code in JavaScript.
The server-side validation would look like this:
ValidationDelegate delegate = (ValidationDelegate)getComponent("delegate");
if (!getCheckbox()) {
String
AhhI really need to finish up the 4.1 release. We'll be able to support
arbitrary requirements logic like this now as well. (on the client side &&
server.. Ie if this field gets filled out/selected then these other two
fields are required. Stuff like that)
On 7/3/06, Richard Clark <[EMAIL PRO
I'll throw in my endorsement for (1). Often, we programmers get too
wrapped up in try to use some clever framework feature for every
minute detail ... when sometimes, it's simpler just to write a few
lines of code.
A listener which first performs validation before processing is easy
to wr
Hello
I'm making the same things right now,
I'm using a Contribute:Tree tree components, and on the way I've
updated them to include more features like:
1. Multiple selection
2. Extended Custom node rendering
3. Extending tree events
4. Different expansion behavior for different nodes
Unfortunat
When maven gets done deploying and the various apache servers sync up you
should be able to find this JumpStart application listed under the "Quick
Start->Contributed" section here:
http://tapestry.apache.org/tapestry4.1/
Thanks for all the hard work put into making Tapestry easier to learn for
hi guys,
last week i got the alternate colours to work within my foreach
component with the help of Murray and Jesse, but I have run into the
same problem again.
now on another page, I have another foreach leap which displays a
table. now within this foreach loop i am already using a class tag
(c
Hi Peter.
It looks like you are using some kind of variable called rowClass,
so in this case you could use two such variables. Something like:
class="ognl:(rowIndex % 2) == 0 ? rowClassEven : rowClassOdd"
where rowIndex is an int property passed to the Foreach index param.
Or you can do someth
10 matches
Mail list logo