Hello,

When you use a panel like

            <ext:Panel ID="Panel1" 
                runat="server" 
                Padding="15" 
                Width="200" 
                Height="100" 
                Frame="true" 
                Floating="true"
                Shadow="Drop"                 
                Title="Panel 1" 
                X="50" 
                Y="50" 
                Html="Positioned at x:50, y:50"
                >                
                </ext:Panel>
The floating attribute is not being emitted. The only workaround is that you use:




            <ext:Panel ID="Panel1" 

                runat="server" 

                Padding="15" 

                Width="200" 

                Height="100" 

                Frame="true" 

                Floating="true"

                Shadow="Drop"                                  

                Title="Panel 1" 

                X="50" 

                Y="50" 

                Html="Positioned at x:50, y:50"

                >

                 <CustomConfig>


                      <ext:ConfigItem Name="floating" Value="true" />


                </CustomConfig>                

                </ext:Panel>