I have a UltraComboEditor in one of the ListView cell. My requirement is to load the second comboeditor based on the first Comboeditor value. How to do this.... ?
Thanks in advance.
If you need to filter one combo base off of the other in a grid, you can, but its not easy.
The following steps will resolve the problem:(The control to be filtered will henceforth be referred to as UDD)1. The UDD must be an UltraDropDown. The dataSource, dataMember, valueMember, and displayMember should be set appropriately. It is not necessary to use a dataview as the datasource, as the dataview's rowfilter will not be used. (e.g. you want all of the values to be available to the UDD).2. The column using the UDD should have the ValueList property set to the UDD. UltraDropDown does not implement the necessary interface to be used as an EditorControl.3. The UDD used in my example only has a single band (found in UltraWinGridDesigner > Band and Column Settings > Band 0). The use of multiple bands may require modifications to the method described here.4. The filtering function consists of two lines of code at its heart: band.ColumnFilters(ColumnNameToFilterBy).ClearFilterConditions() band.ColumnFilters(ColumnNameToFilterBy).filterConditions.Add(FilterComparisonOperator.Something, comparisonValue)