TWebTreeView missing properties

aTV.TopItem.Selected := True; -- [Error] ...(2769): identifier not found: "TopItem"

aTV.Items[0].Selected := True; -- [Error] ...(2769): identifier not found: "Selected"

aTV.Select( aTv.Items[0] ); -- this DOES compile

  1. At this moment, there is no TopItem at runtime.
  2. We fixed Selected: boolean property on TTreeNode
1 Like