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.
有没有一种干净的方法可以将 NumberField 的数字向右对齐?
我发现这篇文章在 GXT 2 中提出了一个答案:
this .setInputStyleAttribute("text-align", "right");
但它在 GXT 3 中不起作用,我没有找到任何等价物。
我终于用一些 CSS 做到了。
在查看了 NumberField 的生成 HTML 之后,它类似于
<div> <div> <input type="text" ...> </div> </div>
所以,我终于定义了这个 css 属性
.numberField input{ text-align : right; }
并将其应用于我所有的 NumberFields。
尝试textField.setDirection(Direction.RTL);
textField.setDirection(Direction.RTL);