Guest User

Untitled

a guest
Jun 23rd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. - Multiple inputs may be interconnected in such way that client side events that occur on one input can trigger actions on the context of other inputs. Developers may use input interconnection support without writing Javascript code.
  2. - Can be extended with new types of input controls plug-in classes.
  3. - Custom input plug-in classes can be used to support for handling client site events on the server side without submitting the form or redrawing the whole form page
  4. - Some control plug-in classes are made available:
  5. * AJAX based form submission (without reloading the whole page)
  6. * Auto-complete text inputs
  7. * Select a location on a map using Google Maps API
  8. * Calendar date input
  9. * CAPTCHA test to prevent automated access by robots
  10. * Linked select input to switch select options when the value of another input changes. An unlimited number of selected can be linked in cascade. Additional plug-in subclasses are provided to retrive option groups from a MySQL database or many other SQL databases using the Metabase PEAR::MDB2 PHP database abstraction layer APIs
  11. * Manage animations that apply visual effects to the page form elements, like: fade-in, fade-out, show, hide, update content, etc..
  12. - XHTML compliant output.
  13. - Load submitted form field values even with register_globals option Off and strip slashes when magic_quotes_gpc option is On.
  14. - Keyboard navigation support:
  15. * Attachment of labels with activation keys to each form field.
  16. * Tab navigation order index.
  17. - Built-in server side (PHP based) and client side (Javascript 1.0 or better) field validation for:
  18. * E-mail address
  19. * Credit card numbers (Visa, Mastercard, American Express, Discover, Diners Club, Carte Blanche, enRoute, JCB, any of these or even determined by a select field).
  20. * Regular expressions.
  21. * Field not empty.
  22. * Field equal to another (useful for password confirmation fields).
  23. * Field different from another (useful for reminder fields that must not be equal to the actual password).
  24. * As set (for check boxes, radio buttons and select multiple fields).
  25. * As integer number (with range limitation).
  26. * As floating point number (with range limitation).
  27. * Programmer defined client and server validation functions.
  28. - Highlight invalid fields rendering them distinct CSS styles
  29. - Security attack prevention by optionally discarding invalid values passed in fields that could not be edited by users but may be spoofed by attackers.
  30. - Option to define a value that, when used in a field, it is accepted without performing any of the validations defined for the field.
  31. - Ability to stop the user from submiting a form more than once inadvertdly.
  32. - Sub form validation (validate only smaller set of field depending on the submit button that was used).
  33. - Composition and generation of the form HTML output with fields displayed as fully accessible or in read-only mode.
  34. - Generation of Javascript functions (useful to set to the page ONLOAD event):
  35. * Set the input focus to a field.
  36. * Select the text of a field.
  37. * Set the input focus and select the text of a field.
  38. * Enable and disable input fields
  39. - Automatic capitalization of the text of a field:
  40. * Upper case.
  41. * Lower case.
  42. * Word initials
  43. - Replacement of text field expressions to perform adjustments like trimming whitespace or auto-complete values based on rules defined by regular expressions
  44. - Compose forms with templates using plain HTML files with embedded PHP code or using the Smarty template engine with a supplied pre-filter plugin
Add Comment
Please, Sign In to add comment