ボタンを無効にするにはどうすればよいですか jQuery UIダイアログで 。上記のリンクのどのドキュメントにもこれを見つけることができないようです。
モーダル確認に2つのボタンがあります(「確認」と「キャンセル」)。特定のケースでは、「確認」ボタンを無効にしたいです。
JQuery UIに含まれる .button()
plugin/widget を含める場合(完全なライブラリがあり、1.8 +を使用している場合は、それがあります)、それを使用してボタンを無効にすることができますand次のように状態を視覚的に更新します。
$(".ui-dialog-buttonpane button:contains('Confirm')").button("disable");
ここで試してみることができます ...または古いバージョンを使用している場合、またはボタンウィジェットを使用していない場合は、次のように無効にすることができます。
$(".ui-dialog-buttonpane button:contains('Confirm')").attr("disabled", true)
.addClass("ui-state-disabled");
あなたが特定のダイアログ内で、例えばIDでそれを望むなら、これをしてください:
$("#dialogID").next(".ui-dialog-buttonpane button:contains('Confirm')")
.attr("disabled", true);
:contains()
が誤検知を与える可能性がある他のケースでは、このように .filter()
を使用できますが、2つのボタンを知っているのでここではやり過ぎです。 Ifそれが他の状況の場合、次のようになります:
$("#dialogID").next(".ui-dialog-buttonpane button").filter(function() {
return $(this).text() == "Confirm";
}).attr("disabled", true);
これにより、:contains()
が何か他のサブストリングと一致するのを防ぐことができます。
このリンクされた質問 でさえ、誰もがこの解決策を提案したように見えます。
$("#dialog").dialog({
width: 480,
height: "auto",
buttons: [
{
id: "button-cancel",
text: "Cancel",
click: function() {
$(this).dialog("close");
}
},
{
id: "button-ok",
text: "Ok",
click: function() {
$(this).dialog("close");
}
}
]
});
次に、他の場所で、jquery UIボタンに API を使用できるはずです。
$("#button-ok").button("disable");
を使用することもできます じゃない disabled
属性が文書化されました:
$("#element").dialog({
buttons: [
{
text: "Confirm",
disabled: true,
id: "my-button-1"
},
{
text: "Cancel",
id: "my-button-2",
click: function(){
$(this).dialog("close");
}
}]
});
ダイアログが開いた後に有効にするには、次を使用します。
$("#my-button-1").attr('disabled', false);
JsFiddle: http://jsfiddle.net/xvt96e1p/4/
以下は、ボタンクリック機能内から機能します。
$(function() {
$("#dialog").dialog({
height: 'auto', width: 700, modal: true,
buttons: {
'Add to request list': function(evt) {
// get DOM element for button
var buttonDomElement = evt.target;
// Disable the button
$(buttonDomElement).attr('disabled', true);
$('form').submit();
},
'Cancel': function() {
$(this).dialog('close');
}
}
});
}
このタスクを少し簡単にするために、jQuery関数を作成しました。おそらく今、より良い解決策があります...いずれにせよ、ここに私の2セントがあります。 :)
これをJSファイルに追加するだけです:
$.fn.dialogButtons = function(name, state){
var buttons = $(this).next('div').find('button');
if(!name)return buttons;
return buttons.each(function(){
var text = $(this).text();
if(text==name && state=='disabled') {$(this).attr('disabled',true).addClass('ui-state-disabled');return this;}
if(text==name && state=='enabled') {$(this).attr('disabled',false).removeClass('ui-state-disabled');return this;}
if(text==name){return this;}
if(name=='disabled'){$(this).attr('disabled',true).addClass('ui-state-disabled');return buttons;}
if(name=='enabled'){$(this).attr('disabled',false).removeClass('ui-state-disabled');return buttons;}
});};
クラス「dialog」のダイアログの「OK」ボタンを無効にします。
$('.dialog').dialogButtons('Ok', 'disabled');
すべてのボタンを有効にします。
$('.dialog').dialogButtons('enabled');
「閉じる」ボタンを有効にして色を変更します。
$('.dialog').dialogButtons('Close', 'enabled').css('color','red');
すべてのボタンが赤のテキスト:
$('.dialog').dialogButtons().css('color','red');
お役に立てれば :)
function getDialogButton( jqUIdialog, button_names )
{
if (typeof button_names == 'string')
button_names = [button_names];
var buttons = jqUIdialog.parent().find('.ui-dialog-buttonpane button');
for (var i = 0; i < buttons.length; i++)
{
var jButton = $( buttons[i] );
for (var j = 0; j < button_names.length; j++)
if ( jButton.text() == button_names[j] )
return jButton;
}
return null;
}
function enableDialogButton( jqUIdialog, button_names, enable )
{
var button = getDialogButton( jqUIdialog, button_names );
if (button == null)
alert('button not found: '+button_names);
else
{
if (enable)
button.removeAttr('disabled').removeClass( 'ui-state-disabled' );
else
button.attr('disabled', 'disabled').addClass( 'ui-state-disabled' );
}
}
ボタン配列を上書きし、必要なものだけを残すことができます。
$( ".selector" ).dialog( "option", "buttons", [{
text: "Close",
click: function() { $(this).dialog("close"); }
}] );
ボタンはクラスui-button
で識別されます。ボタンを無効にするには:
$("#myButton").addClass("ui-state-disabled").attr("disabled", true);
ダイアログを動的に作成しているのでなければ(可能な場合)、ボタンの位置がわかります。したがって、最初のボタンを無効にするには:
$("#myButton:eq(0)").addClass("ui-state-disabled").attr("disabled", true);
ui-state-disabled
クラスは、ボタンをニースの淡色表示スタイルにするものです。
このコードは、「YOUR_BUTTON_LABEL」でボタンを無効にします。 contains()で名前を置き換えることができます。 無効にする
$(".ui-dialog-buttonpane button:contains('YOUR_BUTTON_LABEL')").button("disable");
「YOUR_BUTTON_LABEL」をボタンのラベルに置き換えます。 有効にする
$(".ui-dialog-buttonpane button:contains('YOUR_BUTTON_LABEL')").button("enable");
ノックアウトを使用している場合、これはさらにクリーンです。次のものがあると想像してください。
var dialog = $('#my-dialog').dialog({
width: '100%',
buttons: [
{ text: 'Submit', click: $.noop, 'data-bind': 'enable: items() && items().length > 0, click: onSubmitClicked' },
{ text: 'Enable Submit', click: $.noop, 'data-bind': 'click: onEnableSubmitClicked' }
]
});
function ViewModel(dialog) {
var self = this;
this.items = ko.observableArray([]);
this.onSubmitClicked = function () {
dialog.dialog('option', 'title', 'On Submit Clicked!');
};
this.onEnableSubmitClicked = function () {
dialog.dialog('option', 'title', 'Submit Button Enabled!');
self.items.Push('TEST ITEM');
dialog.text('Submit button is enabled.');
};
}
var vm = new ViewModel(dialog);
ko.applyBindings(vm, dialog.parent()[0]); //Don't forget to bind to the dialog parent, or the buttons won't get bound.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.2.0/knockout-min.js"></script>
<div id="my-dialog">
Submit button is disabled at initialization.
</div>
魔法は jQuery UIソース から来ています。
$( "<button></button>", props )
基本的に、ボタンオブジェクトに渡すことで、任意のjQueryインスタンス関数を呼び出すことができます。
たとえば、HTMLを使用する場合:
{ html: '<span class="fa fa-user"></span>User' }
または、ボタンにクラスを追加する場合(これは複数の方法で実行できます):
{ addClass: 'my-custom-button-class' }
たぶん、あなたは夢中になっていて、ホバーされたときにボタンをDOMから削除したいでしょう:
{ mouseover: function () { $(this).remove(); } }
このような数え切れないほどのスレッドで誰もこれについて言及していないように見えることに本当に驚いています...
これは私のために働いた-
$("#dialog-confirm").html('Do you want to permanently delete this?');
$( "#dialog-confirm" ).dialog({
resizable: false,
title:'Confirm',
modal: true,
buttons: {
Cancel: function() {
$( this ).dialog( "close" );
},
OK:function(){
$('#loading').show();
$.ajax({
type:'post',
url:'ajax.php',
cache:false,
data:{action:'do_something'},
async:true,
success:function(data){
var resp = JSON.parse(data);
$("#loading").hide();
$("#dialog-confirm").html(resp.msg);
$( "#dialog-confirm" ).dialog({
resizable: false,
title:'Confirm',
modal: true,
buttons: {
Close: function() {
$( this ).dialog( "close" );
}
}
});
}
});
}
}
});
私のやり方はCancel: function(e) { $(e.target).attr( "disabled","disabled" ); }
です
これは私が見つけた最短で最も簡単な方法です。
ダイアログを作成するときにボタンを無効にできます。
$(function() {
$("#dialog").dialog({
modal: true,
buttons: [
{ text: "Confirm", click: function() { $(this).dialog("close"); }, disabled: true },
{ text: "Cancel", click: function() { $(this).dialog("close"); } }
]
});
});
@import url("https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css");
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<div id="dialog" title="Confirmation">
<p>Proceed?</p>
</div>
または、ダイアログの作成後はいつでも無効にすることができます。
$(function() {
$("#dialog").dialog({
modal: true,
buttons: [
{ text: "Confirm", click: function() { $(this).dialog("close"); }, "class": "confirm" },
{ text: "Cancel", click: function() { $(this).dialog("close"); } }
]
});
setTimeout(function() {
$("#dialog").dialog("widget").find("button.confirm").button("disable");
}, 2000);
});
@import url("https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css");
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<div id="dialog" title="Confirmation">
<p>Button will disable after two seconds.</p>
</div>
これを行うと、たとえば最初のボタンを無効にできます。
$('.ui-dialog-buttonpane button:first').attr('disabled', 'disabled');