web-dev-qa-db-ja.com

JQuery UIダイアログの閉じるボタンを削除するにはどうすればいいですか?

JQuery UIで作成したダイアログボックスの閉じるボタン(右上隅の _ x _ )を削除するにはどうすればよいですか?

753
Robert MacLean

私はこれが最後にうまくいったことを発見しました(ボタンを見つけてそれを隠すopen関数を上書きする3行目に注意してください)

$("#div2").dialog({
    closeOnEscape: false,
    open: function(event, ui) {
        $(".ui-dialog-titlebar-close", ui.dialog | ui).hide();
    }
});

すべてのダイアログで閉じるボタンを非表示にするには、次のCSSも使用できます。

.ui-dialog-titlebar-close {
    visibility: hidden;
}
696
Robert MacLean

これは、CSSを使用してページ上のすべてのダイアログをオーバーライドしない別のオプションです。

CSS

.no-close .ui-dialog-titlebar-close {display: none }

HTML

<div class="selector" title="No close button">
    This is a test without a close button
</div>

Javascript.

$( ".selector" ).dialog({ dialogClass: 'no-close' });

作業例

351
David

「最良の」答えは複数の対話には向いていないでしょう。これがより良い解決策です。

open: function(event, ui) { 
    //hide close button.
    $(this).parent().children().children('.ui-dialog-titlebar-close').hide();
},
122
Earl

JavaScriptの代わりにCSSを使用して閉じるボタンを非表示にすることができます。

.ui-dialog-titlebar-close{
    display: none;
}

すべてのモーダルに影響を与えたくない場合は、

.hide-close-btn .ui-dialog-titlebar-close{
    display: none;
}

そしてダイアログの最上位ノードに.hide-close-btnを適用します

85
Gordian Yuan

公式の ページ に示されており、Davidによって示唆されているように、

スタイルを作成します。

.no-close .ui-dialog-titlebar-close {
    display: none;
}

それから、あなたはそれが閉じるボタンを隠すために単にダイアログにno-closeクラスを追加することができます:

$( "#dialog" ).dialog({
    dialogClass: "no-close",
    buttons: [{
        text: "OK",
        click: function() {
            $( this ).dialog( "close" );
        }
    }]
});
47
mhu

これはもっといいと思います。

open: function(event, ui) {
  $(this).closest('.ui-dialog').find('.ui-dialog-titlebar-close').hide();
}
41
Miguel Galante

要素に対して.dialog()を呼び出したら、イベントハンドラを使用せずに、いつでも閉じるボタン(およびその他のダイアログマークアップ)を見つけることができます。

$("#div2").dialog({                    // call .dialog method to create the dialog markup
    autoOpen: false
});
$("#div2").dialog("widget")            // get the dialog widget element
    .find(".ui-dialog-titlebar-close") // find the close button for this dialog
    .hide();                           // hide it

別の方法:

ダイアログイベントハンドラ内では、thisは「dialogged」されている要素を指し、$(this).parent()はダイアログマークアップコンテナを指します。

$("#div3").dialog({
    open: function() {                         // open event handler
        $(this)                                // the element being dialogged
            .parent()                          // get the dialog widget element
            .find(".ui-dialog-titlebar-close") // find the close button for this dialog
            .hide();                           // hide it
    }
});

参考までに、ダイアログのマークアップは次のようになります。

<div class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable">
    <!-- ^--- this is the dialog widget -->
    <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix">
        <span class="ui-dialog-title" id="ui-dialog-title-dialog">Dialog title</span>
        <a class="ui-dialog-titlebar-close ui-corner-all" href="#"><span class="ui-icon ui-icon-closethick">close</span></a>
    </div>
    <div id="div2" style="height: 200px; min-height: 200px; width: auto;" class="ui-dialog-content ui-widget-content">
        <!-- ^--- this is the element upon which .dialog() was called -->
    </div>
</div>

デモはこちら

33
Salman A

Robert MacLeanの答えは私にはうまくいきませんでした。

これは私にとってはうまくいきます:

$("#div").dialog({
   open: function() { $(".ui-dialog-titlebar-close").hide(); }
});
25
FLY
$("#div2").dialog({
   closeOnEscape: false,
   open: function(event, ui) { $('#div2').parent().find('a.ui-dialog-titlebar-close').hide();}
});
9
Alok Vad

上記のどれも動作しません。本当にうまくいく解決策は、次のとおりです。

$(function(){
  //this is your dialog:
  $('#mydiv').dialog({
    // Step 1. Add an extra class to our dialog to address the dialog directly. Make sure that this class is not used anywhere else:
    dialogClass: 'my-extra-class' 
  })
  // Step 2. Hide the close 'X' button on the dialog that you marked with your extra class
  $('.my-extra-class').find('.ui-dialog-titlebar-close').css('display','none');
  // Step 3. Enjoy your dialog without the 'X' link
})

それがあなたのために働くかどうか確認してください。

9

ボタンを非表示にする最善の方法は、data-icon属性を使用してボタンをフィルタリングすることです。

$('#dialog-id [data-icon="delete"]').hide();
7
ibrahimab

http://jsfiddle.net/marcosfromero/aWyNn/ /

$('#yourdiv').                 // Get your box ...
  dialog().                    // ... and turn it into dialog (autoOpen: false also works)
  prev('.ui-dialog-titlebar'). // Get title bar,...
  find('a').                   // ... then get the X close button ...
  hide();                      // ... and hide it
6
marcosfromero

Dialogウィジェットによって追加された閉じるボタンにはクラス 'ui-dialog-titlebar-close'があります。したがって、最初の.dialog()の呼び出しの後に、次のようなステートメントを使用してもう一度閉じるボタンを削除できます。

$( 'a.ui-dialog-titlebar-close' ).remove();
6
Sonal S.

ダイアログボックスのcloseイベントをキャッチします。このコードは<div>#dhx_combo_list)を削除します。

open: function(event, ui) { 
  //hide close button.
  $(this).parent().children().children('.ui-dialog-titlebar-close').click(function(){
    $("#dhx_combo_list").remove();
  });
},
6
ruwan

クラスを無効にするためのショートコード:

$(".ui-dialog-titlebar-close").hide();

使用されるかもしれません。

6
Caniko
$(".ui-button-icon-only").hide();
5
Cos

ヘッダ行を削除することもできます。

<div data-role="header">...</div>

閉じるボタンを削除します。

3
mellow-yellow

簡単な方法:(これをJavascriptで行います)

$("selector").dialog({
    autoOpen: false,
    open: function(event, ui) {   // It'll hide Close button
        $(".ui-dialog-titlebar-close", ui.dialog | ui).hide();
    },
    closeOnEscape: false,        // Do not close dialog on press Esc button
    show: {
        effect: "clip",
        duration: 500
    },
    hide: {
        effect: "blind",
        duration: 200
    },
    ....
});
2
Arsman Ahmad
document.querySelector('.ui-dialog-titlebar-close').style.display = 'none'

私は自分のアプリのいくつかの場所でこれを行っていることがわかったので、それをプラグインでラップしました。

(function ($) {
   $.fn.dialogNoClose = function () {
      return this.each(function () {
         // hide the close button and prevent ESC key from closing
         $(this).closest(".ui-dialog").find(".ui-dialog-titlebar-close").hide();
         $(this).dialog("option", "closeOnEscape", false);
      });
   };
})(jQuery)

使用例

$("#dialog").dialog({ /* lots of options */ }).dialogNoClose();
1
bmode

私はワンライナー(彼らが働くところ)のファンです。これは私のために働くものです:

$("#dialog").siblings(".ui-dialog-titlebar").find(".ui-dialog-titlebar-close").hide();
0
wordragon

この純粋なCSSの行はどうですか?私はこれが与えられたIdとの対話のための最もきれいな解決策であると思います:

.ui-dialog[aria-describedby="IdValueOfDialog"] .ui-dialog-titlebar-close { display: none; }
0
Chrisman