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!!!" />
Although <rich:comboBox> does not have title attribute, try correcting spelling of title in your code
<rich:comboBox>
title
If you want something like defaultLabel inside the box as suggestion then try below.
<rich:comboBox defaultLabel ="this doesn't work!!!" />
Reference