BoldSign®Effortlessly integrate e-signatures into your app with the BoldSign® API. Create a sandbox account!
var bindFooter = false;
$(function() {
$("#date").ejDatePicker({ open: function() {
if (!bindFooter) {
$(".e-footer").bind("click", function() {
alert("Footer clicked");
var bindFooter= true;
});
}
}});
}); |
onCreateDate(args) {
$(".e-footer").bind("click", function() {
alert("Footer clicked");
});
} |
<div id="datepick" ej-datepicker [(displayInline)]="displayInline" (create)="onCreateDate($event)"> </div> |
onCreateDate(args) {
let proxy : any = this;
$(".e-footer").bind("click", function() {
alert("Footer clicked");
proxy.getData(proxy.startDate,proxy.endDate);
});
} |