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.
我想知道为什么 Vaadin GWT 组件没有 id 或名称?我在问,因为我想使用外部 Java 脚本来引用它们,例如使用 document.getElementById('foo')。
有谁知道为什么要添加这些属性?
谢谢,斯蒂芬妮
您可以使用 setDebugId 为 Vaadin 组件设置 id:
button.setDebugId("myDebugId");
从 vaadin 7 开始,不推荐使用 setDebugId 并且:
button.setId("myDebugId");
应该使用