Here I am developing simple angular html form, I am using angular smart table. How can i clear smart table search filter after i click reset button
My html
<tr>
<th></th>
<th><input st-search="studentId" st-delay="1200" /></th>
<th><input st-search="studentName" st-delay="1200" /></th>
<th><filter-options code-id="200" search-field="studentType">
</filter-options></th>
</tr>
<button id="cm-ResetBtn" name="cm-ResetBtn" type="button" ng-click="Reset()">Reset</button>
My angular code
$scope.Reset = function () {
//TODO
}