Widgets > wijeventscalendar > Hide the Navigation Bar |
By default the wijeventscalendar displays a navigation bar at the bottom of the control. The navigation bar notes the selected date and lets the user navigate to previous or following dates or months at run time. You can disable the navigation bar by setting the navigationBarVisible option to False.
</script>
tag in the references, enter the following jQuery script to initialize the wijeventscalendar widget and set the navigationBarVisible option.
<script type="text/javascript">
$(document).ready(function () {
$("#eventscalendar").wijevcal({
navigationBarVisible: false
});
});
</script>