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.
GXT ToolTipConfig で複数行を取得するにはどうすればよいですか?
ToolTipConfig のタイトルに長いテキストがあります。どうすれば複数行に分割できますか?
この wordwrap css プロパティ属性を ToolTip titles html タグに設定してみてください。
div.test {word-wrap:break-word;}
http://www.w3schools.com/cssref/css3_pr_word-wrap.asp
私は、これがあなたが必要とするものだと思います:
ToolTipConfig config = new ToolTipConfig(); config.setMaxWidth(300);
したがって、ツールチップによって線が移動します。