Widgets > wijeventscalendar > Hide the Header Bar |
By default, thewijeventscalendardisplays a header bar at the top of the control. The Header bar contains tabs for the calendar views, allowing you to change the current view at run time. You can disable the Header bar by setting theheaderBarVisibleoption to False.
</script>
tag in the references, enter the following jQuery script to initialize the wijeventscalendar widget and set the headerBarVisible option.
<script type="text/javascript">
$(document).ready(function () {
$("#eventscalendar").wijevcal({
headerBarVisible: false
});
});
</script>