TMSFMXGrid: Comments in row=0

Delphi XE4/ FiremonkeyPack actual version:

TMSFMXGrid

  • Fixedrows=0
  • insert comments in the row=0 and also other rows
  • after insert the comments there are no comment indicator at row=0!!


Another request:

Please please insert finally the unit FMX.Comtrols in the uses-list of FMX.TMSBitmap and FMX.TMSHtmlText. After every update we get delphi inline warnings H2443... ;)

Best regards

The first row are Fixed Row grid cell types, this can be changed with


procedure TForm1.TMSFMXGrid1GetCellClass(Sender: TObject; ACol,
  ARow: Integer; var CellClassType: TFmxObjectClass);
begin
  if (ARow = 0) and (ACol = 1) then
    CellClassType := TTMSFMXCommentGridCell;
end;

Kind Regards, 
Pieter