Created
September 21, 2011 21:40
-
-
Save jjaramillo/1233394 to your computer and use it in GitHub Desktop.
"Override" the "callback" function triggered after infopath executes an async call on an infopath browser enabled form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
var nCurrentFormData_SetFormData = CurrentFormData_SetFormData; | |
CurrentFormData_SetFormData = function () { | |
nCurrentFormData_SetFormData.apply(this, arguments); | |
//Your custom code here | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment