ダイアログボックスに3つのボタンを追加し、ダイアログボックス内に3つのタブがあり、クリックしたタブの機能でボタンを表示および非表示にしたい
ダイアログのコードは次のようになります
$('a.open_dialog_edit').click(function(e) {
//e.preventDefault();
var tabsDiv=$('<div />').appendTo('body').load($(this).attr('href'),function(){
//$('#tabs').tabs();
var editor = $('.textarea').wysihtml5().data("wysihtml5").editor.setValue(getCustomText($('select#state').val(), $('input#contactname.required').val()));
var dialog = $('#tabs').tabs(
{
select: function(ev, ui) {
//Setup Buttons to each Tab
switch(ui.index) {
case 0:
$('.ui-dialog-buttonpane').find("button:contains('Email Senden')").hide();
break;
case 1:
$('.ui-dialog-buttonpane').find("button:contains('Speichern')").hide();
break;
}
}
}).dialog({
title: $(this).attr('title'),
modal: true,
draggable: false,
width: 800,
position: 'top',
buttons:
[{
text: "Speichern",
"class": "btn btn-primary",
click: function () {
$.ajax({
type: "POST",
url: 'action.php',
data: $("#edit_form").serialize(), // serializes the form's elements.
success: function(data)
{
alert('Der Datensatz wurde gespeichert!'); // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});
},
}, {
text: "Email Senden",
"class": "btn btn-primary",
click: function () {
$.ajax({
type: "POST",
url: 'mailer.php',
data: $("#contactform").serialize(), // serializes the form's elements.
success: function(data)
{
alert('Das Email wurde geschickt!'); // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});
},
text: "Rechnung herunterladen",
"class": "btn btn-primary",
click: function() {
$.ajax({
type: "POST",
url: 'docsx.php',
data: $("#edit_form").serialize(), // serializes the form's elements.
success: function(data)
{
window.location.href ='rechnung.docx'; // show response from the php script.
},
error:function(){
alert('Es gibt ein Fehler bei Daten übetragung!');
}
});
}
}],
close: function() {
tabsDiv.remove() // so I can reload again
location.reload(true);
// allFields.val( "" ).removeClass( "ui-state-error" );
},
});
$('select#state').on('change',function() {
$('ul.wysihtml5-toolbar').remove();
alert($('select#state').val());
$('.textarea').wysihtml5().data("wysihtml5").editor.setValue(getCustomText($('select#state').val(), $('input#contactname.required').val()));
});
});
return false;
});
例:最初のタブがクリックされた場合、senEmailボタンを非表示にする必要があります