Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
奇妙な問題が発生しています。ツールバーまたはExt.Msg.alertで指定したタイトルは自動的に切り捨てられ、「...」が追加されます。
これを取り除く方法は?ツールバー、メッセージボックス、その他すべての場所に完全なタイトルが必要です。
これは、sencha のフォーラムで報告されている Webkit のバグで、ここまたはここで参照できます。
cssまたは.sassファイルでこれを解決策として使用します。
css
.sass
.x-title{padding:0 .3em;} .x-title .x-innerhtml{padding: 0;}
または:
.x-title .x-innerhtml:after { display: inline-block; content: ''; width: 0.3em; }
この問題は、デフォルトで .x-title に割り当てられた省略記号プロパティが原因です。それを to clip プロパティに変更する必要があります。
構成に cls プロパティを指定します。
例えば :
cls : 'textFormat',
次にcssファイルで:
.textFormat .x-title .x-innerhtml{ text-overflow : clip !important; }
このコードは、特定のツールバーの既存のコードをオーバーライドします。