選択時にブートストラップ HTML エディターに正しいテキスト値を追加するイベントがあります。問題は、選択があるたびにhtmlツールバーが追加されるため、そこにたくさんのツールバーがあることです。作成前に破棄したいのですが、方法がよくわかりません。コードは次のようになります
$('a.open_dialog').click(function(e) {
e.preventDefault();
var tabsDiv=$('<div />').appendTo('body').load($(this).attr('href'),function(){
$('#tabs').tabs();
$('select#state').live('change',function() {
$('.textarea').empty().wysihtml5().data("wysihtml5").editor.setValue(getCustomText($('select#state').val()));
});
$( "#datepicker" ).datepicker();
})
.dialog({
title: $(this).attr('title'),
modal: true,
draggable: false,
width: 800,
position: 'top',
buttons: {
"Speichern": function() {
open: { $(this).addClass('b') }
$.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!');
}
});
},
"Email schicken": 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!');
}
});
},
"Rechnung herunterladen":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" );
},
});
return false;
});