BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[Script]
function oncreate(args) {
this.element.prop('readonly', true);
} |
[script]
function onChange(args) {
if (this.model.value == null)
this.option('value', this.model.minValue);
} |
[script]
$scope.custom = function (e) {
$scope.function1.call(this, e);
$scope.function2.call(this, e);
}
$scope.function1 = function (args) {
alert("function1")
};
$scope.function2 = function (args) {
alert("function2");
} |