Listcell 删除起始空格

发布于 2024-12-28 08:19:41 字数 156 浏览 1 评论 0原文

当我创建 new Listcell(" a") 时,我只能看到输出为 "a" 而不是 " a" , listcell 是否会删除从 listcell 的标签开始空格...如果是这样我怎样才能避免它这样做。?我在ZK做这个

When I create new Listcell(" a") I can only see output as "a" instead of " a" , does listcell removes the starting spaces from the label of listcell...if so how can I avoid it from doing it.? I am doing this in ZK

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

今天小雨转甜 2025-01-04 08:19:42
Listcell lc=new Listcell();
Label lb=new Label(str);
lb.setPre(true);
lc.appendChild(lb);

是否解决了问题

Listcell lc=new Listcell();
Label lb=new Label(str);
lb.setPre(true);
lc.appendChild(lb);

Did solve the problem

停滞 2025-01-04 08:19:41

尝试输入“%20”而不是“”

try to put "%20" instead of " "

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文