What is the difference between JavaScript ListBox and ListView controls?
This knowledge base explains the difference between the ListBox and ListView component.
Comparison
S.No | ListBox | ListView |
1 | It is a form component and it will display a list of items. The selected items will be submitted when it is placed within the form. | It is a layout component and it will display a list of items. |
2 | It supports built-in filtering and reordering the options. | Filtering and reordering can be achieved through sample level customization. |
3 | It supports Dual ListBox with drag and drop and toolbar options to move items between them. | Drag and Drop is not supported. |
4 | It does not support virtualization and multi-level list navigation. | Supports virtualization to load a huge amount of data and multi-level list navigation. |
5 | UG link for Listbox | UG link for ListView
|