October 2, 200124 yr Hello, so here is the problem, my list view works fine on one page but it doesn't find the same items later from the order ID number?? The database shows the orderID is the same and this is proven by the list view earlier in the page but later when you modify your account I can't get it to find any records. The first HTML is from the page that lists the products you have purchased, the second is after you have choosen the personalize one of those itmes all it needs to do is to list all items again so that the person can modify his next order but the only -tag that shows me anything is -findany and the is no good anyway. <td><form name="form3" method="post" action="FMPro"> <input type="submit" name="-find" value="Personalize"> <input type="hidden" name="-db" value="medicalorderitems.fp5"> <input type="hidden" name="-lay" value="orderpersonalized"> <input type="hidden" name="-format" value="html/medicalpersonalized.htm"> <input type="hidden" name="orderID" value="[FMP-currenttoken]"> <input type="hidden" name="-token" value="[FMP-Currenttoken]"> <input type="hidden" name="-find" value=""> </form> works great, I have even put this in the other page and it still doesn't work on the other page. currently the only thing I have for the next list view is this. <form name="form5" method="post" action="FMPro"> <input type="submit" value="**** "> <input type="hidden" name="-token" value="[FMP-currenttoken]"> <input type="hidden" name="-db" value="medicalorderitems.fp5"> <input type="hidden" name="OrderID" value="[FMP-currenttoken]"> <INPUT TYPE="hidden" NAME="-format" VALUE="html/itemsview.htm"> <input type="hidden" name="-lay" value="orderalpha"> <input type="hidden" name="-findany" value="[FMP-currenttoken]"> </form> any clue
October 15, 200124 yr The second form uses the -FindAny action. This is used to find one *random* record in a database -- probably not what you want here. try it with the -Find tag.
Create an account or sign in to comment