Hi, all. This is what I'm trying to do: 1.- I want to have a form similar to the wizard sample. In the first page I want to have a input box that can hold a number and another for a name. Something like this: <?xml version="1.0"?> <document xmlns:xf="http://xml.apache.org/cocoon/xmlform/2002"> <xf:form id="form-insert" view="product" action="insert" method="POST"> <xf:caption>New Product</xf:caption> <error> <xf:violations class="error"/> </error> <xf:textbox ref="/productName"> <xf:caption>Product Name:</xf:caption> <xf:violations class="error"/> </xf:textbox> <xf:textbox ref="/descriptions"> <xf:caption>Number of Descriptions</xf:caption> <xf:help> (one for each language you'll choose later)</xf:help> <xf:violations class="error"/> </xf:textbox> <xf:submit id="prev" class="button"> <xf:caption>Prev</xf:caption> <xf:hint>Go to previous page</xf:hint> </xf:submit> <xf:submit id="next" class="button"> <xf:caption>Next</xf:caption> <xf:hint>Go to next page</xf:hint> </xf:submit> </xf:form> </document>
2.- Now I want to query the form so I can get the number the user put in the 'descriptions' field. Then I could show him the number of boxes she requested at the previous page, so she could fill descriptions for a product for the number of languages she wanted in step 1. 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. Ivelin, anyone...is this possible? If so, how could I make it work? I'm having a VERY hard time making XMLForms work, I'm still unsure if they derserve the time. Please, convince me, I really want to keep on trying, but I'm sooo tired... I know Javascript validation is not that good, but I have a strong Javascript background and I think I could code something similar quicker. Thanks in advance. --------------------------------------------------------------------- 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]>