This is a migrated thread and some comments may be shown as answers.

Radcombobox will not drop down inside template

1 Answer 118 Views
LightBox
This is a migrated thread and some comments may be shown as answers.
Frank
Top achievements
Rank 1
Frank asked on 27 Feb 2014, 10:23 PM
I have radcombobox inside of ItemTemplate of RadLIghtboxItem and it seems it will not drop down when clicked.  If on the same page, if it put the combobox outside of the lightbox, the control works fine.  Why is that?

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 28 Feb 2014, 03:36 AM
Hi Frank,

Please have a look into the sample code snippet which works fine at my end. Please provide your code if it doesn't help.

ASPX:
<telerik:RadLightBox ID="RadLightBox1" runat="server" Width="400px" Height="250px">
    <Items>
        <telerik:RadLightBoxItem>
            <ItemTemplate>
                <telerik:RadComboBox ID="RadComboBox1" runat="server">
                    <Items>
                        <telerik:RadComboBoxItem Text="Item1" />
                        <telerik:RadComboBoxItem Text="Item2" />
                        <telerik:RadComboBoxItem Text="Item3" />
                        <telerik:RadComboBoxItem Text="Item4" />
                    </Items>
                </telerik:RadComboBox>
            </ItemTemplate>
        </telerik:RadLightBoxItem>
    </Items>
</telerik:RadLightBox>

Thanks,
Shinu.
Tags
LightBox
Asked by
Frank
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or