JQuery UI tarafından oluşturulan bir iletişim kutusundaki kapatma düğmesini ( sağ üst köşedeki X işareti) nasıl kaldırabilirim ?
JQuery UI tarafından oluşturulan bir iletişim kutusundaki kapatma düğmesini ( sağ üst köşedeki X işareti) nasıl kaldırabilirim ?
Yanıtlar:
Bu sonunda çalıştı bulduk (düğme bulmak ve gizler açık fonksiyonu geçersiz kılan üçüncü satırı unutmayın):
$("#div2").dialog({
closeOnEscape: false,
open: function(event, ui) {
$(".ui-dialog-titlebar-close", ui.dialog || ui).hide();
}
});
Tüm iletişim kutularındaki kapat düğmesini gizlemek için aşağıdaki CSS'yi de kullanabilirsiniz:
.ui-dialog-titlebar-close {
visibility: hidden;
}
$(".ui-dialog-titlebar-close", ui).hide();
yalnızca bu iletişim kutusunun düğmesini gizlemek için .
open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
Burada, sayfadaki her iletişim kutusunu aşmayan CSS kullanan başka bir seçenek var.
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' });
dialogClass : $("#my-dialog-id").attr("class"),
$( ".selector" ).dialog({ dialogClass: 'no-close' , closeOnEscape: false,});
"en iyi" yanıtı birden çok iletişim kutusu için iyi olmaz. İşte daha iyi bir çözüm.
open: function(event, ui) {
//hide close button.
$(this).parent().children().children('.ui-dialog-titlebar-close').hide();
},
$(".ui-dialog-titlebar-close", $(this).parent()).hide();
JavaScript yerine kapatma düğmesini gizlemek için CSS'yi kullanabilirsiniz:
.ui-dialog-titlebar-close{
display: none;
}
Tüm modaları etkilemek istemiyorsanız, aşağıdaki gibi bir kural kullanabilirsiniz
.hide-close-btn .ui-dialog-titlebar-close{
display: none;
}
Ve .hide-close-btn
iletişim kutusunun üst düğümüne uygulayın
Resmi sayfada gösterildiği ve David'in önerdiği gibi:
Bir stil oluşturun:
.no-close .ui-dialog-titlebar-close {
display: none;
}
Ardından, kapat düğmesini gizlemek için no-close sınıfını herhangi bir iletişim kutusuna ekleyebilirsiniz:
$( "#dialog" ).dialog({
dialogClass: "no-close",
buttons: [{
text: "OK",
click: function() {
$( this ).dialog( "close" );
}
}]
});
Bence bu daha iyi.
open: function(event, ui) {
$(this).closest('.ui-dialog').find('.ui-dialog-titlebar-close').hide();
}
Bir .dialog()
öğeyi çağırdıktan sonra , olay işleyicilerini kullanmadan istediğiniz zaman kapatma düğmesini (ve diğer iletişim kutusu işaretlemesini) bulabilirsiniz:
$("#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
Alternatif yöntem:
Diyalog olayı işleyicilerinin içinde, this
"diyalog" yapılan öğeyi ve $(this).parent()
diyalog işaretleme kapsayıcısını belirtir, böylece:
$("#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
}
});
Bilginize, iletişim kutusu işaretlemesi şöyle görünür:
<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>
Yukarıdakilerin hiçbiri çalışmaz. Gerçekten işe yarayan çözüm:
$(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
})
Lütfen sizin için çalışıp çalışmadığını kontrol edin.
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
İletişim kutusu widget'ı tarafından eklenen kapatma düğmesi 'ui-dialog-titlebar-close' sınıfına sahiptir, bu nedenle .dialog () öğesine ilk çağrınızdan sonra, kapatma düğmesini tekrar kaldırmak için böyle bir ifade kullanabilirsiniz: Çalışıyor ..
$( 'a.ui-dialog-titlebar-close' ).remove();
$(".ui-button-icon-only").hide();
.hide()
olarak ayarlanır display:none
, dolayısıyla $(".ui-button-icon-only").hide();
işlevsel olarak eşdeğerdir .ui-button-icon-only { display: none; }
.
Başlık satırınızı da kaldırabilirsiniz:
<div data-role="header">...</div>
ki bu kapat düğmesini kaldırır.
document.querySelector('.ui-dialog-titlebar-close').style.display = 'none'
Ulaşmanın kolay yolu: (Bunu sizin için yapın 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
},
....
});
Uygulamamın çeşitli yerlerinde bunu yaptığımı bulduğumdan beri, bir eklentiye sardım:
(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)
Kullanım Örneği:
$("#dialog").dialog({ /* lots of options */ }).dialogNoClose();
Kapat düğmesini aşağıdaki kodla kaldırabilirsiniz. Yararlı savaşabileceğiniz başka seçenekler de var.
$('#dialog-modal').dialog({
//To hide the Close 'X' button
"closeX": false,
//To disable closing the pop up on escape
"closeOnEscape": false,
//To allow background scrolling
"allowScrolling": true
})
//To remove the whole title bar
.siblings('.ui-dialog-titlebar').remove();