Posted 16 January 2020, 11:39 am EST
Most of our grids are flexgrids and trying to be more uniform by converting some truedbgrids to flexgrids. Is it possible to add a row that acts as a text filter, similar to how TrueDbGrids work?
Also, we have a custom combobox that has a checkedlist inside of it. I’m trying to go a little deeper but when I add it to a normal windows form it has the drop down arrow. When I add it to a flexgrid it loses the drop down arrow. It will drop down but you have to double click in the cell.
The code below has the custom drop down (checkedcbSampleGroups ), the other ones always show the arrow but this one does not.
FlexGrid.Cols(NameOf(ProductInfo.DosageUnits)).Editor = cboDosageUnits
FlexGrid.Cols(NameOf(ProductInfo.AutoSpikes)).Editor = autospikedropdown
FlexGrid.Cols(NameOf(ProductInfo.EUCriteria)).Editor = EUCriteriadropdown
FlexGrid.Cols(NameOf(ProductInfo.UserGroupNames)).Editor = checkedcbSampleGroups
FlexGrid.Cols(NameOf(ProductInfo.UserGroupNames)).ShowButtons = C1.Win.C1FlexGrid.ShowButtonsEnum.Always
FlexGrid.Cols(NameOf(ProductInfo.UserGroupNames)).ShowButtons = C1.Win.C1FlexGrid.ShowButtonsEnum.Always
FlexGrid.Cols(NameOf(ProductInfo.DosageUnits)).ShowButtons = C1.Win.C1FlexGrid.ShowButtonsEnum.Always
FlexGrid.Cols(NameOf(ProductInfo.AutoSpikes)).ShowButtons = C1.Win.C1FlexGrid.ShowButtonsEnum.Always
FlexGrid.Cols(NameOf(ProductInfo.EUCriteria)).ShowButtons = C1.Win.C1FlexGrid.ShowButtonsEnum.Always