Is there a List control in ITMILL toolkit??

I want to add a list control in my app, but i cant locate the list control…

can anybody help me with this…or if there is an alternative to this control…

vbnet

The Select component provides a list box. In single selection mode it’s a drop-down list and in multiselect mode a multi-line list box. By setting the “optiongroup” style you can make it use radio buttons, or check boxes in multiselect mode.

If you need to include some other components inside the list, HTML and web browsers do not allow that. You can use the Table component, which looks very similar to a list box. If you need to make it look even more similar, you can always customize the appearance with CSS.

You can also simply use an OrderedLayout component with vertical orientation.