Hi, Boki:
Trying to convert:
Boki, how do I get the selected item into the cell with a ComboBoxColumn?
I can see that perhaps this event may not even be necessary with NG6.
Same with the issue of reassigning font.color to the column.
Can you please comment on this?
Thank you,
Chuck
PROCEDURE TfrmCVTable.NxComboBoxColumn6Select(Sender: TObject);
BEGIN
WITH GridView2 DO //GridView2 is NG6 grid
BEGIN
//not sure how to do this in NG6
Cell[SelectedCol, SelectedRow].AsString := TNxComboBoxColumn6(Sender).
.Editor.Text; <== Boki, how do I get the selected item into the cell with a ComboBoxColumn?
// having the same issue here as the other cells/columns, the color keeps
// changing
Columns[SelectedCol].Font.Color :=
StringToColor(ColFontColor[SelectedCol]);
END;
END;