Hello,
This is no specific to telerik, but may be I could get some answer to my question here.
My Radcombobox is in a small iFrame and when I try to expand it, it expands but behind the iframe windows, is it pssible to have it expanding on top of surrounding window ?
CS
This is no specific to telerik, but may be I could get some answer to my question here.
My Radcombobox is in a small iFrame and when I try to expand it, it expands but behind the iframe windows, is it pssible to have it expanding on top of surrounding window ?
CS
8 Answers, 1 is accepted
0
Hello Christian Surieux,
RadComboBox cannot overlay IFRAME elements. This is the reason why it expands behind the iframe.
We hope this is not a major show stopper for you.
Kind regards,
Rosi
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
RadComboBox cannot overlay IFRAME elements. This is the reason why it expands behind the iframe.
We hope this is not a major show stopper for you.
Kind regards,
Rosi
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

CSurieux
Top achievements
Rank 2
answered on 24 Oct 2008, 07:05 AM
Thanks for answer, but may be I have badly explained my problem: my radcombobox is IN the iframe and I seaech a way to expand over the iframe limit.
Was your answer for this pb ?
CS
Was your answer for this pb ?
CS
0
Hello Christian,
RadComboBox does not support this functionality. When RadComboBox is inside iframe,its dropdown cannot be expanded over the iframe.
Regards,
Rosi
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
RadComboBox does not support this functionality. When RadComboBox is inside iframe,its dropdown cannot be expanded over the iframe.
Regards,
Rosi
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Nitin
Top achievements
Rank 1
answered on 16 Apr 2013, 01:49 PM
Hi,
I have the same issue. I have the RadComboBox in an iFrame. I am using 2013 version of Telerik, is it supported NOW ? If not, do you have any alternatives like RadAutoComplete works with iFrame.
I am upgrading my html dropdown with RadComboBox, html dropdown works inside an iFrame and RadComboBox does not, It is a blocking issue for me. Looking forward to you.Thanks,
Regards,
Redknee dev
I have the same issue. I have the RadComboBox in an iFrame. I am using 2013 version of Telerik, is it supported NOW ? If not, do you have any alternatives like RadAutoComplete works with iFrame.
I am upgrading my html dropdown with RadComboBox, html dropdown works inside an iFrame and RadComboBox does not, It is a blocking issue for me. Looking forward to you.Thanks,
Regards,
Redknee dev
0
Hi Nitin,
In contrast to the DropDownList the RadComboBox control can not show outside the IFRAME.The main cause for this is the different rendering of the controls that is handled differently by the browser. For instance, the dropdown of the combo box is a div with an ul inside. You can try adding this to a simple page inside a simple iframe and change its position - it will hide but will not go out of the iframe. This is the way browsers handle this scenario and we cannot avoid this. What we have done is to add edge detection for the dropdown element of the combo box that you can enable or disable.
Kind regards,
Kate
the Telerik team
In contrast to the DropDownList the RadComboBox control can not show outside the IFRAME.The main cause for this is the different rendering of the controls that is handled differently by the browser. For instance, the dropdown of the combo box is a div with an ul inside. You can try adding this to a simple page inside a simple iframe and change its position - it will hide but will not go out of the iframe. This is the way browsers handle this scenario and we cannot avoid this. What we have done is to add edge detection for the dropdown element of the combo box that you can enable or disable.
Kind regards,
Kate
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Nitin
Top achievements
Rank 1
answered on 17 Apr 2013, 12:13 PM
Hi,
Please explain or provide links on edge detection. Thanks,
Regards,
Redknee dev
Please explain or provide links on edge detection. Thanks,
Regards,
Redknee dev
0
Hi Nitin,
You can use the EnableScreenBoundaryDetection="true" property of the RadComboBox control that will make the dropdown expands to the direction where more space is estimated to be available.
All the best,
Kate
the Telerik team
You can use the EnableScreenBoundaryDetection="true" property of the RadComboBox control that will make the dropdown expands to the direction where more space is estimated to be available.
All the best,
Kate
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

simi
Top achievements
Rank 1
answered on 13 Sep 2017, 08:03 AM
i can't able to expand telerik dropdowlist when browsing with google chrome.
i using fooliwing script
<telerik:radcodeblock runat="server" id="Radcodeblock1">
<script type="text/javascript">
function OnClientFocusHandler(sender, eventArgs) {
if (!sender.get_dropDownVisible()) {
sender.showDropDown();
}
sender.selectText();
}
</script>
</telerik:radcodeblock>