Re: dynamic XMLForm taking inout data from previous steps?

2002-10-31 Thread Josema Alonso
>...
> How many boxes do you expect to render?
> One solution is to change the getter method for the languages property, so
> that it pads the array with blank entries to match the value of
> descriptionsNumber if the array's current size() is less than that of
> descriptionsNumber .

It seems you were reading my mind ;-)
I just coded that a few hours ago and it works.

Thanks a lot.

ps: I'm starting a new thread about my concerns using XMLForm with
Xindice...I'm almost there, but would need a but of help :-)



-
Please check that your question  has not already been answered in the
FAQ before posting. 

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>




Re: dynamic XMLForm taking inout data from previous steps?

2002-10-31 Thread Ivelin Ivanov

Actually what you describe is the correct behavior of repeat.
If you look at the W3C XForms spec, it says that repeat will render the
nodeset which satisfies the XPath selector.

How many boxes do you expect to render?
One solution is to change the getter method for the languages property, so
that it pads the array with blank entries to match the value of
descriptionsNumber if the array's current size() is less than that of
descriptionsNumber .


Ivelin


- Original Message -
From: "Josema Alonso" <[EMAIL PROTECTED]>
To: "Cocoon-Users" <[EMAIL PROTECTED]>
Sent: Tuesday, October 29, 2002 4:07 PM
Subject: Re: dynamic XMLForm taking inout data from previous steps?


> > I tried to figure how the xf:repeat and xf:group tags work, maybe that's
> the
> > way to go. Still not much info about it anyway.
> I think I've almost got it:
>  id="descriptionLangs">
> 
> Language (code):
> 
> 
>
> And I have in the model bean:
> ...
> private int descriptionsNumber = 1;
> private List languages = new ArrayList();
> ...
> public InsertBean () {
> initLanguages();
> }
>
> public void initLanguages() {
> languages.add("en");
> languages.add("es");
> }
> ...
>
> And the 'descriptionsNumber' is filled on a previous step in the form
> wizard.
> But...oh yes, there's a but, I can only generate in the repeat as many
input
> boxes as elements the 'languages' ArrayList have. It seems that it doesn't
> show more than two of them no matter the number I put to fill the
> 'descriptionsNumber' field. If I put 1, it shows just one field, if I put
2,
> it shows two fields, if I put three or more, it only shows two anyway. I
> guess that's because the ArrayList only have two elements and the rest of
> the calls return null.
> Is there a workaround?
> I think I'll try looking at the source code of the transformer...
>
> Best.
>
>
>
> -
> Please check that your question  has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>
>
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail:   <[EMAIL PROTECTED]>
>


-
Please check that your question  has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>




Re: dynamic XMLForm taking inout data from previous steps?

2002-10-29 Thread Josema Alonso
> I tried to figure how the xf:repeat and xf:group tags work, maybe that's
the
> way to go. Still not much info about it anyway.
I think I've almost got it:


Language (code):



And I have in the model bean:
...
private int descriptionsNumber = 1;
private List languages = new ArrayList();
...
public InsertBean () {
initLanguages();
}

public void initLanguages() {
languages.add("en");
languages.add("es");
}
...

And the 'descriptionsNumber' is filled on a previous step in the form
wizard.
But...oh yes, there's a but, I can only generate in the repeat as many input
boxes as elements the 'languages' ArrayList have. It seems that it doesn't
show more than two of them no matter the number I put to fill the
'descriptionsNumber' field. If I put 1, it shows just one field, if I put 2,
it shows two fields, if I put three or more, it only shows two anyway. I
guess that's because the ArrayList only have two elements and the rest of
the calls return null.
Is there a workaround?
I think I'll try looking at the source code of the transformer...

Best.



-
Please check that your question  has not already been answered in the
FAQ before posting. 

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>