Hi,

I have a callout with CloseOnOutsideClick="true" option enabled.

When I bind a ComboBox into the Bodywidget, When I was selecting any ComboBox item then the callout is disappearing.

Code:
<ext:TagLabel ID="Tag1" runat="server" Width="210" Stacked="true" MaxLength="100">
    <Tags>
        <ext:Tag Text="Update">
        </ext:Tag>
    </Tags>
    <Callouts>
        <ext:Callout ID="callout1" runat="server" Title="Updat field" BodyStyle="padding:0px 10px 0px 10px;" CloseOnOutsideClick="true" Trigger="Click">
             <BodyWidget>
                <ext:Panel runat="server" Layout="VBoxLayout" AnchorHorizontal="100%" Width="300" Padding="10" Border="false">
                        <Defaults>
                            <ext:Parameter Name="margins" Value="0 0 10 0" Mode="Value" />
                        </Defaults>
                        <LayoutConfig>
                            <ext:VBoxLayoutConfig Align="Stretch" />
                        </LayoutConfig>
                        <Items>
                            <ext:ComboBox ID="ComboBox1" Editable="false" runat="server" StyleSpec="margin-right:5px">
                                <Items>
                                    <ext:ListItem Text="1" Value="1" />
                                    <ext:ListItem Text="2" Value="2" />
                                    <ext:ListItem Text="3" Value="3" />
                                    <ext:ListItem Text="4" Value="4" />
                                    <ext:ListItem Text="5" Value="5" />
                                    <ext:ListItem Text="6" Value="6" />
                                    <ext:ListItem Text="7" Value="7" />
                                    <ext:ListItem Text="8" Value="8" />
                                    <ext:ListItem Text="9" Value="9" />
                                    <ext:ListItem Text="10" Value="10" />
                                </Items>
                            </ext:ComboBox>
                        </Items>
                </ext:Panel>
             </BodyWidget>
        </ext:Callout>
    </Callouts>
</ext:TagLabel>
I am not able select anything from the ComboBox1 and not able to proceed further. Help me out from this bug.

Thank you