RE: One form with two submit buttons in cflayoutarea

2007-08-06 Thread Andy Matthews
Is there any sort of validation on the form itself? I ran into this problem using a javascript validation library. It only recognized the first submit button and nothing I did could get the other one to show up. Then I removed the validation and presto. It worked. -Original Message-

Re: One form with two submit buttons in cflayoutarea

2007-08-05 Thread Raymond Camden
Odd - I see it too. One thing to remember though - when you put cfform inside of cflayoutarea, CF will post the form asynchronously, and will replace the contents of the layoutarea with the result. But - you are posting to yourself. So you end up loading your original file inside the layoutarea

Re: One form with two submit buttons in cflayoutarea

2007-08-05 Thread Raymond Camden
So i did a test when I changed your cfform to post to test2.cfm, and dumped the form scope there, and I saw the same - it doesn't recognize the second button. I mean the button works, but the value is the same. On 8/5/07, Raymond Camden [EMAIL PROTECTED] wrote: Odd - I see it too. One thing to