The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
In My GDBG,I have 2 combo column,after i choose the first combo column item,the second column's databound source should be filtered by the fitst combo column selected item.
Which event should i use to do..?
any sample?thanks!
ADAdministrator Syncfusion Team August 22, 2003 09:15 AM UTC
You can do this handling a couple of events, CurrentCellChanged and CurrentCellShowingDropDown.
The idea is that in CurrentCellShowingDropDown, you create a DataView filtered according to your needs, and set this DataView to be the datasource for the dropdown. Attached is a little sample. The one crucial point is that the datasource for the 'slave combo' should be the complete table that is being used to create the DataView in CurrentCellShowingDropDown.