Changes to how ETF UI controls are rendered in EPiServer
With ETF 1.1 came some breaking changes affecting ETF UI controls that mimic the appearance of EPiServer's page type property controls.
<!-- Page type property-style controls are placed inside Table control -->
<asp:Table runat="server">
<ETF:PageSelector Name="Target page" ID="TargetPage" runat="server" />
<ETF:ImageSelector Name="Icon" ID="TargetIcon" runat="server" />
</asp:Table>
<!-- Other ETF UI controls cannot (and should not) be placed inside a Table control -->
<ETF:ToolButton Text="Add target" ButtonType="Add" OnClick="AddTargetButtonClicked" runat="server" />