I need to open a Bootstrap Modal from clicking on a button in a Bootstrap navbar and other places (to show data for a component instance, ie. providing \"editing\" f
Just add href='#scheduleentry-modal' to the element you want to open the modal with
href='#scheduleentry-modal'
Or using jQuery: $('#scheduleentry-modal').modal('show');
$('#scheduleentry-modal').modal('show');