Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

is there a way to communicate between cfinput type=submit and input type=submit or button

New Here ,
Oct 25, 2011 Oct 25, 2011

Hi,

   How to call a cfinput type="submit" by a normal button?

In javascript, i tried document.cfformName.submitButtonName. The result is undefined.

Is there any way to communicate between these two?normal input button and cfinput type=submit.

I just want that, when i click my button, it will simultaneously click the button also from cfform flash.

Anyway, these two buttons are in separate file.

Regards,

Jeff

TOPICS
Flash integration
1.5K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 27, 2011 Oct 27, 2011
LATEST

Hi,

   Anyone out there willing to help me.

 

  <cfform format="flash" name="form_flash">

      <cfinput type="submit" name="btnFlash">

</cfform>

<input type="button" value="BUTTON" onclick="chkFlash();">

<script>

     function chkFlash()

     {

          document.form_flash.btnFlash.click();

      }

</script>

This is not a working sample. I want to ask help if there any way to communicate with the cfform flash?Currently, it is undefined with function chkFlash.

Regards,

Jeff

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources