I have a ajaxformloop. The list of objects that I want to display has two
fields. Both of them are enums and I want to be able to refresh the second
enum when I make my selection on the first. For example

Field 1     Filed 2 

name      is
startDate before

My code looks like

<t:form>
    <div t:type="ajaxformloop" t:id="filters" t:source="filterSections"
t:value="currentFilterSection" t:encoder="encoderFilterSection">
          <t:zone t:id="zoneComparator" t:update="show"> 
              <select t:id="selectProperty" t:type="select"
zone="zoneComparator" t:model="propertyModel"
t:value="currentFilterSection.value.properity">
               </select>  
              <select t:type="select" t:model="comparatorModel"
t:value="currentFilterSection.value.comparator">
               </select>                                 
          </t:zone>
   </div>
</t:form>

Now I have done this before when but not in the ajaxformloop. 

The problem that I have here is that I have a list of object and I am not
sure how I can signal what row is being changed. 

I have looked at the documentation of the select but I cant find any way to
send information about the row in question. If I could send that then I
could modify the list.

Any suggestions how this can be achieved?

cheers



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/how-to-send-a-row-information-in-ajaxformloop-tp5720085.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to