我有一个存储在DB / textarea
中的字符串。
如果我尝试`System.out.println(text);
输出是:
Test text
it is good
i am a line after a line break actually.
http://aaaaaaaaa.bbbbbbbbb.cccccccccc.ddddddddd.com/testtesttesttest
Unix path :
/test/home/user/tester/
然后我尝试使用函数panel.getGrid().setTooltip(text);
工具提示中的文字显示为:
Test text it is good i am line after a line break
actually.
http://aaaaaaaaa.bbbbbbbbb.cccccccccc.ddddddddd.com/testtesttesttest Unix
path : /test/home/user/tester/
这不是我想要的格式,如何以正确的格式显示工具提示?
我使用的是void com.extjs.gxt.ui.client.widget.Component.setToolTip(String text)
,版本是2.4.0或2.3.0
********更新**********
我发现System.err.println(view.getGrid().getToopTip().getHtml());
显示正确的HTML格式,如何使工具提示显示此格式?
答案 0 :(得分:0)
我认为工具提示使用html。您使用的是html换行符<br>
吗?