TMSTableView

Hi,


i want to manually assign a detailform to a tmstableview
do in the tableview i have no DefaultDetailview. I use the onItemclick event to go to the requested detailform. this works fine, but i'm not able to display the  bitmap on the itemdetailrectangle.

i seems this button is only displayed when a DetailViewItem is assigned.

is there a solution for this ? 

Br,

Filip

Hi, 


Manually setting the detail rectangle to true should be possible with

procedure TForm1.TMSFMXTableView1ItemCustomize(Sender: TObject;
  AItem: TTMSFMXTableViewItem; AItemShape: TTMSFMXTableViewItemShape;
  AItemControlShape: TControl);
begin
  AItemShape.ShapeDetailRectangle.Visible := True;
end;