JqxValidator: Difference between revisions
Jump to navigation
Jump to search
Created page with "File:Jqxvalidator.png == Description == jqxValidator can check the fields on a form. jqWidgets is a commercial product, which depending on how you use it, requires a..." |
|||
| Line 1: | Line 1: | ||
[[File:Jqxvalidator.png]] | [[File:Jqxvalidator.png]] | ||
== Description == | == Description == | ||
jqxValidator can check the fields on a form. | jqxValidator can check the fields on a form. It should be the bottom item in the Project Explorer, so it can check all the controls above it. | ||
jqWidgets is a commercial product, which depending on how you use it, requires a license fee. | jqWidgets is a commercial product, which depending on how you use it, requires a license fee. | ||
Revision as of 13:08, 12 August 2015
Description
jqxValidator can check the fields on a form. It should be the bottom item in the Project Explorer, so it can check all the controls above it.
jqWidgets is a commercial product, which depending on how you use it, requires a license fee. Complete details are on jqWidget's website. The product is well supported.
Properties and Methods
See the complete documentation at jqWidget's site: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxvalidator/index.htm?(arctic)#demos/jqxvalidator/defaultfunctionality.htm
| animation | Sets the animation type of hiding hints. |
| arrow | Sets whether the arrow of the hints will be shown. |
| closeOnClick | Sets whether the hints will be closed when the user clicks on them. |
| focus | Sets whether the jqxValidator will focus the first invalid input |
| onvalidationError | This is triggered when the form is validated with some errors. |
| onvalidationSuccess | This is triggered when the form is validated successfully. |
| position | Sets the default position of the hints. |
Example (Basic)
Function Button1_onclick()
$("#Validator1").jqxValidator("validate")
End Function
Example (JavaScript)
Button1.onclick = function() {
$("#Validator1").jqxValidator("validate");
}
Output
See above.
