Hi, I've a problem with the visibility of items of a RadCombobox in a grid insert in a Notification.
When I press click on RadComboBox I see only items that exit from Notification (Attach File).
This is my Notification
                                When I press click on RadComboBox I see only items that exit from Notification (Attach File).
This is my Notification
<telerik:RadNotification ID="RadNotification1" runat="server" ContentIcon="../../Images/Notification/check_48.png"        Position="Center" AutoCloseDelay="15000" Width="600" Height="250px" Pinned="true"        EnableRoundedCorners="true" EnableShadow="true" KeepOnMouseOver="true" VisibleTitlebar="true"        ShowCloseButton="true" Animation="Fade" AnimationDuration="200" Skin="Web20"        TitleIcon="../../Images/Notification/check_16.png">         <ContentTemplate>             <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="false" OnItemDataBound="gvDesignazione_ItemDataBound">                 <MasterTableView>                     <Columns>                         <telerik:GridTemplateColumn>                             <ItemTemplate>                                 <%# Eval("INFOBASE")%>                             </ItemTemplate>                         </telerik:GridTemplateColumn>                         <telerik:GridTemplateColumn>                             <ItemTemplate>                                 <telerik:RadComboBox ID="ddlDesignazione" runat="server" Skin="Office2010Blue" Width="180px"                                    ZIndex="1000">                                 </telerik:RadComboBox>                             </ItemTemplate>                         </telerik:GridTemplateColumn>                     </Columns>                 </MasterTableView>             </telerik:RadGrid>         </ContentTemplate>     </telerik:RadNotification>