Jeditableプラグインで選択オプションを作成しました。
これは私の場合とまったく同じです。
選択オプションの幅を広げる必要があります。
どうすればそれを達成できますか?
これは私のコードです
$('.editable_select').editable(function(value, settings) {
console.log(this);
console.log(value);
console.log(settings);
return(value);
}, {
data : "{'example1':'example1','example2':'example2','example3':'example3'}",
type : 'select',
submit : 'OK',
style : "inherit",
});