I have a RadTileList that includes Tiles in the ASPX markup as well as others that are dynamically created on the server (not databound).
Why can't I remove a RadTile that was defined in the ASPX markup from the code behind? in the snippet below - the tile reference is found - but .Remove does nothing.
Why can't I remove a RadTile that was defined in the ASPX markup from the code behind? in the snippet below - the tile reference is found - but .Remove does nothing.
Dim
tile = RadTileList1.GetAllTiles.Find(
Function
(x) x.ID = item.ID)
If
tile IsNot
Nothing
Then
RadTileList1.GetAllTiles.Remove(tile)
End
If