Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Detect Browser Information

You can use JavaScript to detect information about the browser you are using. For Example: Wet signatures are not supported in older versions of some browsers. You might want to hide a section in your form that has a wet signature if the browser does not support it. To get details about the browser where your form is loaded, add a text control to your form with its CSS Class property set to detectbrowser and use the following custom JavaScript:

Code Block
var CustomEventHandlers = {
	    setup: function (el) {
		if (CustomView.hasClass(el, 'detectbrowser')) {
		    el.value = navigator.userAgent
		}
	    }
	} 

...