TableView: custimized item style

hello, would like to ask something about custimizing items in tableview. using OnItemCustimize i could change the item style (eg. simply set a new font color for caption). but after one item is selected (clicked), these changes will be reset to default values. so my questions are:

1) how can i make the tableview remain my changes, also after the item is selected?
2) can i set some property (or in code), so that the item selection will be disabled?

thx a lot.

Hi, 


1) To customize the caption color you need to use the following code instead:

procedure TForm1.TMSFMXTableView1ItemCustomize(Sender: TObject;
  AItem: TTMSFMXTableViewItem; AItemShape: TTMSFMXTableViewItemShape;
  AItemControlShape: TControl);
begin
  AItemShape.CaptionColor := claRed;
end;

2) This is currently not possible, we have added this on our todolist

Kind Regards,
Pieter