Posts

Showing posts from July, 2017

Capture signature in SFDC Using Canvas

Capture the e-signature in SFDC using Canvas. Code: VF Page: <script>var $j = jQuery.noConflict();</script> <apex:stylesheet value="{!URLFOR($Resource.jquerymobile,'/jquerymobile/jquery.mobile-1.3.2.min.css')}"/> <apex:includeScript value="{!URLFOR($Resource.Jquery)}"  /> <apex:includeScript value="{!URLFOR($Resource.jquerymobile,'/jquerymobile/jquery.mobile-1.3.2.min.js')}"/>  <!-- <input id="saveSigButton" type="button" name="SigCap" onclick="saveSignature();"   value="Capture Signature"></input> -->   <apex:form >   <apex:actionStatus id="status" >     <apex:facet name="start">         <apex:outputPanel >             Saving....         </apex:outputPanel>     </apex:facet>  ...