मैं jQuery UI द्वारा बनाए गए संवाद बॉक्स पर बंद बटन ( शीर्ष दाएं कोने में X ) को कैसे निकालूं ?
मैं jQuery UI द्वारा बनाए गए संवाद बॉक्स पर बंद बटन ( शीर्ष दाएं कोने में X ) को कैसे निकालूं ?
जवाबों:
मैंने इसे अंत में काम किया है (ध्यान दें कि तीसरी पंक्ति खुले फ़ंक्शन को ओवरराइड करती है जो बटन को ढूंढती है और इसे छुपाती है):
$("#div2").dialog({
closeOnEscape: false,
open: function(event, ui) {
$(".ui-dialog-titlebar-close", ui.dialog || ui).hide();
}
});
सभी संवादों पर नज़दीकी बटन को छिपाने के लिए आप निम्नलिखित सीएसएस का भी उपयोग कर सकते हैं:
.ui-dialog-titlebar-close {
visibility: hidden;
}
$(".ui-dialog-titlebar-close", ui).hide();
केवल इस संवाद के लिए बटन को छिपाने के लिए ।
open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }
यहां सीएसएस का उपयोग करने का एक और विकल्प है जो पृष्ठ पर प्रत्येक संवाद की सवारी नहीं करता है।
सीएसएस
.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>
जावास्क्रिप्ट।
$( ".selector" ).dialog({ dialogClass: 'no-close' });
dialogClass : $("#my-dialog-id").attr("class"),
$( ".selector" ).dialog({ dialogClass: 'no-close' , closeOnEscape: false,});
"सर्वश्रेष्ठ" उत्तर कई संवादों के लिए अच्छा नहीं होगा। यहाँ एक बेहतर समाधान है।
open: function(event, ui) {
//hide close button.
$(this).parent().children().children('.ui-dialog-titlebar-close').hide();
},
$(".ui-dialog-titlebar-close", $(this).parent()).hide();
आप जावास्क्रिप्ट के बजाय बंद बटन को छिपाने के लिए CSS का उपयोग कर सकते हैं:
.ui-dialog-titlebar-close{
display: none;
}
यदि आप सभी मॉडल्स को प्रभावित नहीं करना चाहते हैं, तो आप एक नियम का उपयोग कर सकते हैं
.hide-close-btn .ui-dialog-titlebar-close{
display: none;
}
और .hide-close-btn
संवाद के शीर्ष नोड पर लागू होते हैं
जैसा कि आधिकारिक पेज पर दिखाया गया है और डेविड द्वारा सुझाया गया है:
एक शैली बनाएं:
.no-close .ui-dialog-titlebar-close {
display: none;
}
फिर, आप इसे बंद करने के लिए किसी भी डायलॉग में नो-क्लोज क्लास जोड़ सकते हैं।
$( "#dialog" ).dialog({
dialogClass: "no-close",
buttons: [{
text: "OK",
click: function() {
$( this ).dialog( "close" );
}
}]
});
मुझे लगता है कि यह बेहतर है।
open: function(event, ui) {
$(this).closest('.ui-dialog').find('.ui-dialog-titlebar-close').hide();
}
एक बार जब आप .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
"डायलॉग" होने वाले तत्व को $(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
}
});
FYI करें, संवाद मार्कअप इस तरह दिखता है:
<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>
उपरोक्त कार्यों में से कोई भी नहीं। समाधान जो वास्तव में काम करता है:
$(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
})
कृपया जांचें कि क्या यह आपके लिए काम करता है।
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
$(".ui-button-icon-only").hide();
.hide()
सेट display:none
है, इसलिए $(".ui-button-icon-only").hide();
कार्यात्मक रूप से इसके बराबर है .ui-button-icon-only { display: none; }
।
आप अपनी हेडर लाइन भी हटा सकते हैं:
<div data-role="header">...</div>
जो क्लोज बटन को हटा देता है।
document.querySelector('.ui-dialog-titlebar-close').style.display = 'none'
प्राप्त करने का आसान तरीका: (अपने में ऐसा करें 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
},
....
});
जब से मैंने पाया कि मैं अपने ऐप में कई जगहों पर ऐसा कर रहा था, मैंने इसे एक प्लगइन में लपेटा:
(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();
आप नीचे दिए गए कोड के साथ बंद बटन को हटा सकते हैं। अन्य विकल्प भी हैं जिनसे आप उपयोगी लड़ सकते हैं।
$('#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();