refresh

The refresh() method reloads the current instance of the DatePicker widget.
The optional parameter options gives the possibility to extend the initial options with the new ones.

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

<script type="text/javascript">
    $(function () {
        $("#picker").shieldDatePicker({
            enabled: false
        });

        $("#picker").swidget().refresh();

    });

</script>