Bypassing form validation

2009-07-23 Thread carlson weber filho - Master CIM Informá tica
I have a form with two submit buttons. Is there any way to selectivelly bypass some validation on one of these buttons? I want to validate just two fields if I click on the button1 and I want to validate all fields when I click on button2 tx, carlson

Re: Bypassing form validation

2009-07-23 Thread carlson weber filho - Master CIM Informá tica
I already tried using setDefaultFormProcessing, but I want to actually process the form without validating it, on one of these buttons but using this method, I can't update my data, . Let me explain better. I have a master-detail form, supose I have fields M1, M2 and M3 on master-side and D1,

Re: Bypassing form validation

2009-07-23 Thread carlson weber filho - Master CIM Informá tica
Isn't invalid to nest forms inside forms? Igor Vaynberg escreveu: you should use embedded forms. make a form for M1 inside it add another form D1 a button in D1 form will only process D1 form, a button in M1 form will process both. -igor 2009/7/23 carlson weber filho - Master CIM

Re: Bypassing form validation

2009-07-23 Thread carlson weber filho - Master CIM Informá tica
Well, I almost got what I want, but there's a problem. When I submit the inner form, on the onSubmit I want to check some values of the master form, and the model doesn't get updated... Any hints here? tx carlson Dane Laverty escreveu: This is sounding like a Chuck Norris joke -- Wicket

Re: Bypassing form validation

2009-07-23 Thread carlson weber filho - Master CIM Informá tica
Yes, I don't want to process it, but I want to do some processing based on the form values. But I got the point, If I don't validate form, I won't get my model updated. Now my problem goes back when I wanted to validate only parts of my values, so let's supose the folowing scenario Master

Re: Bypassing form validation

2009-07-23 Thread carlson weber filho - Master CIM Informá tica
you're the man! tx a lot carlson Igor Vaynberg escreveu: M1.processInput(); if (M1.isValid()) { value=M1.getModelObject(); } else { handleerrror } -igor 2009/7/23 carlson weber filho - Master CIM Informática cwe...@mastercim.com.br: Yes, I don't want to process it, but I want to do some

DropDownChoice with ID and Value

2009-07-27 Thread carlson weber filho - Master CIM Informá tica
Newbie question: I have a list of 3 options, let's supose it's 1=abc, 2=def, 3=ghi I will present to my user the select field with the choices abc, def and ghi. I want that my model updates with 1, 2 and 3. I did not find a way to achieve this (must me a simple thing). best regards,

Re: DropDownChoice with ID and Value

2009-07-27 Thread carlson weber filho - Master CIM Informá tica
Will try it, thanks a lot Scott Swank escreveu: Look at ChoiceRenderer. It's pretty easy to write one that takes a map in it's constructor if your needs are that simple. Scott 2009/7/27 carlson weber filho - Master CIM Informática cwe...@mastercim.com.br: Newbie question: I have a list of