close

Fires when calendar popup is closed.


<input id="picker" ></input>

<script type="text/javascript">
    $(function () {
        $("#picker").shieldDatePicker({
            events: {
                close: function(e) {
                    alert("Calendar is closed");
                }
            }
        });
    });
</script>