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.
是否可以在 Richfaces 中为组合框组件设置标题属性?
<rich:comboBox title="this doesn't work!!!" />
虽然<rich:comboBox>没有标题属性,但请尝试title在您的代码中更正拼写
<rich:comboBox>
title
如果您想在框中使用 defaultLabel 之类的内容作为建议,请尝试以下操作。
<rich:comboBox defaultLabel ="this doesn't work!!!" />
参考