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

Does anyone have an example of using onvalidate with an editable ( applet) CFGRID.

New Here ,
Feb 25, 2016 Feb 25, 2016

How do you access the form values in javascript using the variables that are passed to the onvalidate function? I cannot find an example anywhere.

<cfform>

<cfgrid name = "FirstGrid" width = "500" height="500"  bgcolor="##FFF8DC"

   onvalidate="validateMyFields"

   query = "GetCourses" insert = "Yes" delete = "Yes"

   font = "Tahoma"

  rowHeaders = "No"

   colHeaderBold = "Yes"

   selectMode = "EDIT"

   insertButton = "Insert a Row" deleteButton = "Delete selected row" >

</cfgrid><br>

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

</cfform>

<script>

function validateMyFields(form, field, value) {

        // What do you do to acces the value of the fields in the cfgrid here???

}

</script>

TOPICS
Advanced techniques
530
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
Community Expert ,
Feb 28, 2016 Feb 28, 2016
LATEST

Any attempt to solve this would only be wasting time. The Coldfusion community generally agrees that Coldfusion's UI tags, of which cfform and cfgrid are examples, are unreliable. Use, for example, datatables instead.

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