BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<script id="template" type="text/x-template">
<div class="template_check">
${check(Expiration)}
</div>
</script>
<script>
var instance = new ej.base.Internationalization();
window.check = function (value) {
if(value != '01/01/0001'){ // here you can add your condition
// formatting the date value
return instance.formatDate(new Date(value), { skeleton: 'yMd', type: 'date' });
}else{
return ""
}
};
</script> |