Disable Close Modal on Outside Click
// for disable modal when click outside
$('#modalid').openModal({dismissible:false});
// remove modal-action modal-close in ok button
<a href="#" onClick="check_ganpass()" id="btn_ok" class="waves-effect waves-green btn-flat ">Edit</a>
// insert bellow "Materialize.toast('Data Telah Berubah',4000);"
$('modalid').closeModal();
hope that answer your question. :)
if you have only one modal, and are using jquery, you can do :
$('#myModal').modal()[0].M_Modal.options.dismissible = false;
$('#myModal').modal('open');
cheers