Hi, I would like to remove the title of ComboBoxItem.
But, setTitle(null) is not working.
setTitle("") shows the colon character.
Is there any way to remove the title?
Thanks in advance.
Sang-Kyun Kim
But, setTitle(null) is not working.
setTitle("") shows the colon character.
Is there any way to remove the title?
Code:
ComboBoxItem cbItem = new ComboBoxItem(); cbItem.setTitle(null);
Sang-Kyun Kim
Comment