Yii2使用Bootbox外掛程式實現自訂彈窗,yii2bootbox

來源:互聯網
上載者:User

Yii2使用Bootbox外掛程式實現自訂彈窗,yii2bootbox

本次嘗試了一個新的小外掛程式"bootbox"。

Yii2中使用了Bootstarp,讓介面更美觀,可是美中不足的是,在Gridview表格的Action裡,刪除功能的彈窗實在有點與Bootstrap違和,網上找到了一種解決方案,分享下使用此外掛程式的過程。

Bootbox.js,是一個小型的JavaScript庫用來建立簡單的可程式化對話方塊,基於Bootstrap的Modal(模態框)來建立。

官方說明

http://bootboxjs.com/v3.x/index.html

Bootbox.js下載

我們可以在GitHub上找到開源的bootbox.js下載

https://github.com/makeusabrew/bootbox

如何使用此外掛程式?

結合Yii2的GridView,我們來自訂Bootbox樣式的彈窗:

一、覆蓋yii.js模組

Yii2內建的yii.js中定義了產生confirm對話方塊,以及執行action操作。

我們可以用過覆蓋js方法來達到目的。

在@app/web/js/路徑下建立一個javascript檔案,比如main.js。

代碼如下:

yii.allowAction = function ($e) {  var message = $e.data('confirm');  return message === undefined || yii.confirm(message, $e);};// --- Delete action (bootbox) ---yii.confirm = function (message, ok, cancel) {  bootbox.confirm(    {      message: message,      buttons: {        confirm: {          label: "OK"        },        cancel: {          label: "Cancel"        }      },      callback: function (confirmed) {        if (confirmed) {          !ok || ok();        } else {          !cancel || cancel();        }      }    }  );  // confirm will always return false on the first call  // to cancel click handler  return false;}

二、註冊你的資源套件

需要註冊bootbox.js和main.js檔案。

修改檔案:@app/assets/Assets.php

代碼如下:

namespace backend\assets;use yii\web\AssetBundle;class AppAsset extends AssetBundle{  public $basePath = '@webroot';  public $baseUrl = '@web';  public $css = ['css/site.css'];  // 註冊js資源  public $js = ['js/bootbox.js', 'js/main.js'];  public $depends = [    'yii\web\YiiAsset',    'yii\bootstrap\BootstrapAsset',  ];}

三、自訂Modal框

瞭解下bootbox.js源碼,可以知道bootbox.js使用的是bootstarp的modal框,我們可以根據需求

修改bootbox.js源碼中的"templates"變數,自訂Modal樣式。

看下對比結果:

修改前:

修改後:

瞬間舒服多了,彈窗功能變的不再那麼違和。類似這樣的彈窗外掛程式有很多,我想可以用同樣的方法來實現使用其他的外掛程式。

以上所述就是本文的全部內容了,希望大家能夠喜歡。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.