0
jQueryダイアログで2つのボタンを配置しようとしています。 私のデフォルト設定では、ボタンは互いの上に初期化されています。 私はそれらを並べる必要があります。jQueryダイアログボタンの配置
誰でもこの問題に関する経験がありますか?ここで
私のinitオプション:
はvar dialogOpts = {
modal: true,
buttons: {
"OK": function() {
if (window.currentNodeValue != null) {
//Not interesting
} else {
//Not interesting
}
},
"Abbrechen": function() {
//Not interesting
}
},
width: 500,
height: 600,
autoOpen: false,
resizable: false
};
JSの代わりにCSSの問題のようです。ダイアログボックスのHTMLコードを投稿できますか? – redShadow