Step 1: Create a widget as shown below
Body HTML Template:
Client Controller script
Step-2: Create a variable of type Macro and in the default section give this widget name.
Body HTML Template:
<button type="button" class="btn btn-danger btn-block" ng-click="c.setFieldValue(inputValue)">Reset Values</button>
Client Controller script
function($scope) {
var c = this;
c.setFieldValue = function(uploadname) {
var g_form = $scope.page.g_form;
g_form.clearValue("acrobat");
g_form.setValue("Additional_software_requirements", "");
g_form.setValue("test","");
g_form.setValue("photoshop", "");
};
}
var c = this;
c.setFieldValue = function(uploadname) {
var g_form = $scope.page.g_form;
g_form.clearValue("acrobat");
g_form.setValue("Additional_software_requirements", "");
g_form.setValue("test","");
g_form.setValue("photoshop", "");
};
}
Step-2: Create a variable of type Macro and in the default section give this widget name.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.