Note: the 3 pieces of code you need to customize are in bold below:
- Exact name of the Unique Id that you assign to your custom component
- Exact name of your Model
- Exact name of your custom Signature field
var params = arguments[0], $ = skuid.$;// get signature canvas and resetvar sig = $("#idSign");sig.jSignature("reset");// get signature field, set to null and save modelvar model = skuid.model.getModel('Contact');var row = model.getFirstRow();var sigField = 'Signature__c';model.updateRow(row,sigField,null);