FNCGrid

Hi there...

Noticed the following issues:

- FixedFont.Style is always fsBold, even if no style [] is selected. Needs to be fixed in sources to work correctly. ( Fixed rows or cols anyway dont need to be fsBold by default! )

- Tried the following in OnGetCellEditorProperties to get an editable csDropDown in a column (etComboEdit is unfo missing in properties):

  if (CellEditor is TTMSFNCGridComboBox) then
  begin
    cbo := (CellEditor as TTMSFNCGridComboBox);
    cbo.AutoComplete:=TRUE;
    cbo.AutoCompleteText:=[cbactEnabled,cbactEndOfLineComplete,cbactSearchAscending];
    cbo.Style:=csDropDown;
    cbo.Items.Assign(...Some Stringlist...);
    cbo.Text :=  grid.Cells[ACol, ARow];
  end;

Cell is editable, but autocomplete doesnt work. Its always closing the cell after first character.



Thanks for your feedback. We could reproduce this and will address this asap.

Hi, 


We have applied a fix for the FixedFont style issue and the autocompletion issue.
The next version will address this.