Newbies tummah2 Posted July 25, 2001 Newbies Posted July 25, 2001 I have a page that loads data from several databases. It uses InlineAction tags to do this. Now, on the same page, I have fields that can be edited. The fields are from several databases. How can I edit multiple databases with one submit? I am aware their might be a way to do it using InlineAction tags, however I have no clue what the syntax would be. Could someone please help me??? Thanks!! C
Garry Claridge Posted July 25, 2001 Posted July 25, 2001 You could try Javascript to submit more than one form. Instead of using input submit types use a button type as such: <form name="myform1" .....>....<input type="hidden" name="-edit"></form> <form name="myform2" .....>....<input type="hidden" name="-edit"></form> <form name="myform3" ....>....<input type="hidden" name="-edit"></form> <input type="button" onclick="subforms();"> In the <head> try this function: <script> function subforms() { document.myform1.submit(); document.myform2.submit(); document.myform3.submit(); } </script> </head> I've never tried this, however it is worth a go! All the best. Garry
scratchmalogicalwax Posted July 25, 2001 Posted July 25, 2001 With Lasso it is possible to do this using -Nothing action, form params, variables and inlines, it allows you to create ASP-ish solutons.......i am somewhat supprised that Filemaker haven't included these features in the CDML tag set for the 5.5 upgd as it makes many CDML problems a bit of a no brainer. [ July 25, 2001: Message edited by: scratchmalogicalwax ]
Newbies tummah2 Posted August 3, 2001 Author Newbies Posted August 3, 2001 Thanks, I will try submitting the forms using Javascript. Thanks for all your help! I'll let you know my results! C
Arin Posted August 3, 2001 Posted August 3, 2001 tummah2 did you get the Javascript to work? I've been messing with it for a few hours, and can't get anything to work. Scratch, how much work is involved in moving to lasso? Costs? (I'm running FMP UNILM on a Mac OS 9.1 with WSC on OS X Server/Apache now)
Recommended Posts
This topic is 8660 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now