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.
我正在使用 trinidad 库,当从后备 bean 在 tr:inputText 组件上设置所需的属性时,组件会向右移动。这会导致组件与面板框容器中包含的其他组件不对齐。
有谁知道如何解决这个问题?
谢谢,约翰。
我会使用 CSS 解决它。如果我是正确的,则将<tr:inputText/>其呈现为您styleClass设置为的表格inputStyle。然后所需的指标将出现在第一行的第一个单元格中(甚至不需要输入)。因此,您可以尝试以下操作:
<tr:inputText/>
styleClass
inputStyle
.inputStyle tr:first-child td:first-child { width: 20px; }