Ability to write custom javascript to validate form elements?

  •  01-22-2008, 5:37 PM

    Ability to write custom javascript to validate form elements?

     
    A customer is asking about this possibility:  If we manually add a form element (whose name we would control) to the editor, like the following textbox example, do we have the ability to allow the user to type data into this element and then edit/validate this data by adding our own Javascript into a CuteSoft event-handler file somewhere?
    strFormFieldHTML = strFormFieldHTML & "<input type=text name=OurTextBox"

    strFormFieldHTML = strFormFieldHTML & " maxlength=" & strSize

    strFormFieldHTML = strFormFieldHTML & " size=" & strSize & ">"

    Editor1.Text = strFormFieldHTML
View Complete Thread