Bug in TWebComboBox

Good morning,
when defining a list of items in TWebComboBox, please enter, for example:
Item 1, U=1
Item 2, U=2
Item 3, U=3
Item 4, U=4
Item 5, U=5
Ite=m 6, U=6

The text after the "=" sign is truncated in runtime., in desgintime everything is displayed correctly.

Regards,
Andrzej

This is because the default NameValueSeparator is '='.
Solve this with:

  WebComboBox1.Items.NameValueSeparator := #0;
  WebComboBox1.Items.Add('item 1, u=1');
  WebComboBox1.Items.Add('item 2, u=2');
   ...

Thank you very much, it's fine now.