2016-12-01 56 views
0

我在我的PHP/mySQL網站中使用Datatables編輯器。Datatables編輯器按鈕不顯示在長模態

當模態窗體打開很長(使用滾動條)時,應該顯示在模式右下角的UPDATE按鈕不會在第一次點擊時顯示。

第一次點擊時,較短的沒有滾動條的模式會顯示UPDATE按鈕。

如果我通過單擊窗體右上角的'x'並重新打開編輯器來關閉長模態,則UPDATE最終顯示。

我有一個圖像顯示如何在編輯模式下沒有更新按鈕顯示。不知道我可以給你什麼其他信息幫助。

enter image description here

我有我的網站有很多的腳本,它使用引導程序。

下面是我如何加載我的.js文件。

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.4.js"></script> 

<script src="assets/global/plugins/jquery-migrate.min.js" type="text/javascript"></script> 

<script src="assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> 
<script src="assets/global/plugins/jquery-ui/jquery-ui.min.js" type="text/javascript"></script> 
<script src="assets/global/plugins/bootstrap-hover-dropdown/bootstrap-hover-dropdown.min.js" type="text/javascript"></script> 
<script src="assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script> 
<script src="assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script> 

<script src="https://cdn.datatables.net/buttons/1.2.1/js/dataTables.buttons.min.js" type="text/javascript"></script> 
<script src="https://cdn.datatables.net/select/1.2.0/js/dataTables.select.min.js" type="text/javascript"></script> 

..和我的CSS文件是按以下順序:

<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css"/> 
<link href="assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/> 
<link href="assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css"/> 
<link href="assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css"/> 
<link href="assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css"/> 
<link rel="stylesheet" type="text/css" href="assets/global/plugins/bootstrap-toastr/toastr.min.css"> 
<link rel="stylesheet" type="text/css" href="assets/global/plugins/bootstrap-summernote/summernote.css"> 
<link href="assets/global/plugins/datatables/datatables.min.css" rel="stylesheet" type="text/css" /> 
<link href="assets/global/plugins/datatables/plugins/bootstrap/datatables.bootstrap.css" rel="stylesheet" type="text/css" /> 
<link href="https://cdn.datatables.net/buttons/1.2.1/css/buttons.dataTables.min.css" rel="stylesheet" type="text/css" /> 
<link href="https://cdn.datatables.net/select/1.2.0/css/select.dataTables.min.css" rel="stylesheet" type="text/css" /> 
<link rel="stylesheet" type="text/css" href="added-assets/plugins/editor/css/editor.dataTables.css"> 

回答

相關問題