Header with combo
-
Hello coders, I am looking for a way to develop a Header Column with a ComboBox Dropdown button. A sample is shown in here.. http://img510.imageshack.us/my.php?image=headerwithcombo4ge.jpg Please help me if you know a way to develop that (it could be only a message to be sent to header or another control) Thanks. Best Regards Emre YAZICI
-
Hello coders, I am looking for a way to develop a Header Column with a ComboBox Dropdown button. A sample is shown in here.. http://img510.imageshack.us/my.php?image=headerwithcombo4ge.jpg Please help me if you know a way to develop that (it could be only a message to be sent to header or another control) Thanks. Best Regards Emre YAZICI
You can create a UserControl to do this, but that is quite a bit of work and advanced. You can try to find a control with similar functionality, such as this one... http://www.codeproject.com/cs/miscctrl/listviewfilter.asp[^] Or an even easier solution would be to break it up into separate controls. You could create several ComboBox controls next to a ListView control. You would then capture the ComboBox's SelectedIndexChanged event to update the ListView.
-
You can create a UserControl to do this, but that is quite a bit of work and advanced. You can try to find a control with similar functionality, such as this one... http://www.codeproject.com/cs/miscctrl/listviewfilter.asp[^] Or an even easier solution would be to break it up into separate controls. You could create several ComboBox controls next to a ListView control. You would then capture the ComboBox's SelectedIndexChanged event to update the ListView.