JQuery UIダイアログのボタンにアイコンを追加することはできますか?私はそれをこのようにしてみました:
$("#DeleteDialog").dialog({
resizable: false,
height:150,
modal: true,
buttons: {
'Delete': function() {
/* Do stuff */
$(this).dialog('close');
},
Cancel: function() {
$(this).dialog('close');
}
},
open: function() {
$('.ui-dialog-buttonpane').find('button:contains("Cancel")').addClass('ui-icon-cancel');
$('.ui-dialog-buttonpane').find('button:contains("Delete")').addClass('ui-icon-trash');
}
});
Open関数のセレクターは正常に機能しているようです。 「open」に次を追加すると:
$('.ui-dialog-buttonpane').find('button:contains("Delete")').css('color', 'red');
次に、赤いテキストのある[削除]ボタンが表示されます。それは悪くありませんが、小さなゴミが[削除]ボタンでもスプライトできることを本当に望んでいます。
編集:
私は受け入れられた答えに微調整を加えました:
var btnDelete = $('.ui-dialog-buttonpane').find('button:contains("Delete")');
btnDelete.prepend('<span style="float:left; margin-top: 5px;" class="ui-icon ui-icon-trash"></span>');
btnDelete.width(btnDelete.width() + 25);
上マージンを追加すると、アイコンが押し下げられるため、垂直方向の中央に表示されます。ボタンの幅に25ピクセルを追加すると、ボタンのテキストが2行目に折り返されなくなります。
この行を試して、ごみ箱アイコンを削除ボタンに追加してください。スプライトは別の要素に存在する必要があります。
$('.ui-dialog-buttonpane').find('button:contains("Delete")').prepend('<span style="float:left;" class="ui-icon ui-icon-trash"></span>');
アイコンがボタンの上部に表示されないようにするには:
$('.ui-dialog-buttonpane')
.find('button:contains("Delete")')
.removeClass('ui-button-text-only')
.addClass('ui-button-text-icon-primary')
.prepend('<span class="ui-icon ui-icon-trash"></span>');
私はこれを試してみましたが、動作します:)
[....]
open: function() {
$('.ui-dialog-buttonpane').
find('button:contains("Cancel")').button({
icons: {
primary: 'ui-icon-cancel'
}
});
[....]
JQuery UIバージョン1.10.0以降では、open
イベントハンドラーを使用せずに、ボタンアイコンを明確に指定できます。構文は次のとおりです。
buttons: [
{
text: "OK",
icons: { primary: "ui-icon-check" }
},
{
text: "Cancel",
icons: { primary: "ui-icon-closethick" }
}
]
secondary
アイコンを指定することもできます。
また、次のようにボタンにidまたはその他の属性を追加できます。
buttons:[
{
text: "Close",
id: "closebtn",
click: function() { $(this).dialog("close"); }
}
],
open: function() {
$("#closebtn").button({ icons: { primary: "ui-icon-close" } });
}
このバージョンは、ボタン内のテキストを心配することなく機能します
open: function() {
$(this).parent().find('.ui-dialog-buttonpane button:first-child').button({
icons: { primary: 'ui-icon-circle-close' }
});
$(this).parent().find('.ui-dialog-buttonpane button:first-child').next().button({
icons: { primary: 'ui-icon-circle-check' }
});
}
これが私が使用するものです。最初のダイアログ定義時に、対象のボタンにIDを割り当てます。
buttons:
[
{
id: "canxButton",
text: "Cancel",
icons: {
primary: "ui-icon-cancel"
},
click: function () { ...
次に、次のようにテキスト/アイコンを変更できます。
$("#canxButton").button("option", "label", "Done");
$("#canxButton").button({ icons: {primary: "ui-icon-close"} });
次のように、「。ui-dialog .ui-button」に高さを割り当てます。
.ui-dialog .ui-button {
height:36px;
}
.ui-icon-kl_exit {
height:32px;
width:32px;
display:block;
background-image: url('../icons/exit32.ico');
}
私はこれを自分で行う必要に出くわしたので、ただの更新。
両方に同じ閉じるボタンがある複数のダイアログがあるので、含まれる別のダイアログのボタンにアイコンが必要な場合に備えて、影響するダイアログにアイコンを直接配置する方法について話すのが便利です同じテキスト。
また、選択したソリューションには、位置の問題を修正する定義済みのCSSクラスがいくつか実際にありません。
次のコードは、元の質問で望まれていたことを、もう少し正確に達成する必要があります。同じゴミ箱アイコンを[削除]ボタンのあるすべてのダイアログに適用する場合、$( '#DeleteDialog')。parent()セレクターを$( '。ui-dialog-buttonpane')に変更すると、その目標を達成できます。
$('#DeleteDialog').parent()
.find('button:contains("Delete")')
.removeClass('ui-button-text-only')
.addClass('ui-button-text-icon-primary ui-button-text-icon')
.prepend('<span class="ui-button-icon-primary ui-icon ui-icon-trash"></span>');
または、他のダイアログに影響を与えたくない場合は、
open: function() {
$(this).parent().find('.ui-dialog-buttonpane button:contains("Cancel")').button({
icons: { primary: 'ui-icon-circle-close' }
});
$(this).parent().find('.ui-dialog-buttonpane button:contains("Ok")').button({
icons: { primary: 'ui-icon-circle-check' }
});
}
私は同じ問題で走りました。 jqueryは、ボタン内のテキストとしてではなく、ボタン自体の「テキスト」と呼ばれる属性にテキストを格納するようです。
私はこのように解決しました:
$dialog.dialog({
resizable:false,
draggable:false,
modal:true,
open:function (event, ui) {
$(this).parents('.ui-dialog').find('.cancel.ui-button').text('Cancel');
//or you could use: $(this).parents('.ui-dialog').find('button[text="Cancel"]').text('Cancel');
$(this).parents('.ui-dialog').find('.add.ui-button').text('OK');
},
buttons:[
{
text:"OK",
click:function () {
},
"class":"add"
},
{
text:"Cancel",
click:function () {
},
"class":"cancel"
}
]
});
クラスベースのアプローチはどうですか?
あなたの_layout.cshtml
ファイルは次のようなものを置きます:
<script type="text/javascript">
$(function () {
stylizeButtons();
}
function stylizeButtons(parent) {
if (parent == undefined) {
parent = $("body");
}
// Buttons with icons
$(parent).find(".my-button-add").button({ icons: { primary: "ui-icon-plusthick"} });
$(parent).find(".my-button-cancel").button({ icons: { primary: "ui-icon-closethick"} });
$(parent).find(".my-button-delete").button({ icons: { primary: "ui-icon-closethick"} });
$(parent).find(".my-button-submit").button({ icons: { primary: "ui-icon-check"} });
$(parent).find(".my-button-export").button({ icons: { primary: "ui-icon-suitcase"} });
$(parent).find(".my-button-search").button({ icons: { primary: "ui-icon-search"} });
$(parent).find(".my-button-editicon").button({ icons: { primary: "ui-icon-pencil"} });
$(parent).find(".my-button-edit").button({ icons: { primary: "ui-icon-pencil"} });
$(parent).find(".my-button-back").button({ icons: { primary: "ui-icon-arrowthick-1-w"} });
$(parent).find(".my-button-previous").button({ icons: { primary: "ui-icon-carat-1-w"} });
$(parent).find(".my-button-next").button({ icons: { primary: "ui-icon-carat-1-e"} });
$(parent).find(".my-button-history").button({ icons: { primary: "ui-icon-bookmark"} });
$(parent).find(".my-button-reports").button({ icons: { primary: "ui-icon-calculator"} });
}
</script>
次に、ダイアログを作成するファイルで、次のようなことを行います。
$("#doStuff-dialog").dialog({
title: "Do Some Stuff",
modal: true,
buttons: [
{
text: "Yes",
class: "my-button-submit",
click: function () {
$(this).dialog("close");
}
},
{
text: "No",
class: "my-button-cancel",
click: function () {
$(this).dialog("close");
}
}
],
open: function () {
stylizeButtons($("#doStuff-dialog").parent());
}
});
そうすれば、テキストの検索に頼る必要がなくなり、ダイアログで最小限のコードが必要になります。アプリケーション全体でこれを使用して、クラスにクラスを与えるだけで、jquery UIのスタイリング/アイコンをボタンに適用します。
ダイアログ>ボタンオプション ドキュメントによると、オブジェクトまたはオプションの配列を渡すことができます。後者では、ボタンをカスタマイズできます。
ボタン
タイプ:オブジェクトまたは配列
デフォルト:[]
サポートされている複数のタイプ:
- Object:キーはボタンのラベルで、値は関連するボタンがクリックされたときのコールバックです。
- Array:配列の各要素は、ボタンに設定する属性、プロパティ、およびイベントハンドラーを定義するオブジェクトでなければなりません。さらに、
icons
のキーを使用してボタンのアイコンオプションを制御し、showText
のキーを使用してボタンのテキストオプションを制御できます。
$(function() {
var buttons = [];
buttons.Push({
text: "Yes",
// icon options
icons: { primary: "ui-icon-check" },
// attributes
"class": "hawt-button",
title: "Aye!"
});
buttons.Push({
text: "Yes to All",
icons: { secondary: "ui-icon-check" }
});
buttons.Push({
text: "Please",
icons: { primary: "ui-icon-notice" },
// text options
showText: false
});
buttons.Push({
text: "Cancel",
icons: { secondary: "ui-icon-close" },
// properties
disabled: true
});
$("#dialog").dialog({
width: "auto",
buttons: buttons
});
});
@import url("https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css");
.ui-button.hawt-button {
color: hotpink;
}
<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>Delete all files from your hard drive?</p>
</div>