
Fabio Laserra
Top achievements
Rank 1
Fabio Laserra
asked on 14 Nov 2011, 05:31 PM
Hello
I would like to report a bug. If you put a RadComboBox in a RadWindow, you will not able to see the elements list. The same behaviour if you use a standard combobox with FormDecorator. Anyway you are still able to select items using keyboard.
This is the code:
The element list box is rendered behind the window (if you minimize it you will see the list still opened).
Bye
Fabio
I would like to report a bug. If you put a RadComboBox in a RadWindow, you will not able to see the elements list. The same behaviour if you use a standard combobox with FormDecorator. Anyway you are still able to select items using keyboard.
This is the code:
<
asp:ImageButton
ID
=
"cmdGraficoIstogramma"
runat
=
"server"
ImageUrl
=
"istogramma.png"
OnClientClick
=
"ApriGraficoIstogramma();return false;"
ToolTip
=
"Grafico Istogramma"
/>
<
telerik:RadScriptBlock
ID
=
"RadScriptBlock2"
runat
=
"server"
>
<
script
type
=
"text/javascript"
>
function ApriGraficoIstogramma() {
var oWnd = $find("<%= RadWindow1.ClientID %>");
oWnd.show();
oWnd.maximize();
return false;
}
</
script
>
</
telerik:RadScriptBlock
>
<
telerik:RadWindow
ID
=
"RadWindow1"
runat
=
"server"
Title
=
"Grafico a Torta"
Width
=
"800"
Height
=
"800"
VisibleOnPageLoad
=
"false"
Behaviors
=
"Maximize,Close"
EnableShadow
=
"true"
InitialBehaviors
=
"Maximize"
>
<
ContentTemplate
>
<
telerik:RadComboBox
runat
=
"server"
ID
=
"cmbGraficoIstogrammaDimensione2"
Skin
=
"Office2007"
>
<
Items
>
<
telerik:RadComboBoxItem
Text
=
"Standard"
Value
=
"950x400"
Selected
=
"True"
/>
<
telerik:RadComboBoxItem
Text
=
"Grandi"
Value
=
"1280x538"
/>
</
Items
>
</
telerik:RadComboBox
>
</
ContentTemplate
>
</
telerik:RadWindow
>
The element list box is rendered behind the window (if you minimize it you will see the list still opened).
Bye
Fabio
7 Answers, 1 is accepted
0

Jayesh Goyani
Top achievements
Rank 2
answered on 15 Nov 2011, 01:56 PM
Hello,
Please set zindex value reagrding your Radwindow's z-index.
Thanks,
Jayesh Goyani
Please set zindex value reagrding your Radwindow's z-index.
<
telerik:RadComboBox
ZIndex
=
""
></
telerik:RadComboBox
>
Thanks,
Jayesh Goyani
0

Shinu
Top achievements
Rank 2
answered on 15 Nov 2011, 02:11 PM
Hello fabio,
Here is the sample code that I tried which worked as expected.
aspx:
JS:
Attached is the screenshot.
-Shinu.
Here is the sample code that I tried which worked as expected.
aspx:
<
telerik:RadWindowManager
ID
=
"mgr"
runat
=
"server"
>
<
Windows
>
<
telerik:RadWindow
OpenerElementID
=
"cmdGraficoIstogramma"
Modal
=
"true"
Overlay
=
"true"
ID
=
"RadWindow1"
runat
=
"server"
Title
=
"Grafico a Torta"
>
<
ContentTemplate
>
<
telerik:RadComboBox
runat
=
"server"
ID
=
"cmbGraficoIstogrammaDimensione2"
>
<
Items
>
<
telerik:RadComboBoxItem
Text
=
"Standard"
Value
=
"950x400"
Visible
=
"true"
Selected
=
"True"
/>
<
telerik:RadComboBoxItem
Text
=
"Grandi"
Value
=
"1280x538"
/>
</
Items
>
</
telerik:RadComboBox
>
</
ContentTemplate
>
</
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
function
OnClientClick()
{
var
oWnd = $find(
"<%= RadWindow1.ClientID %>"
);
oWnd.radopen(
null
,
"RadWindow1"
);
}
Attached is the screenshot.
-Shinu.
0

Mario
Top achievements
Rank 1
answered on 15 Nov 2011, 04:55 PM
Hello,
I have made some tests. If you expand the RadWindow the issue will occur also in your example.... so it is related to the status of the window. It occurs also with RadTooltips (they are shown behind the window) :( I hope that there is a workaround because I really need radtooltips
I have made some tests. If you expand the RadWindow the issue will occur also in your example.... so it is related to the status of the window. It occurs also with RadTooltips (they are shown behind the window) :( I hope that there is a workaround because I really need radtooltips
0

Mario
Top achievements
Rank 1
answered on 15 Nov 2011, 05:23 PM
Solution: ShowOnTopWhenMaximized="false"
0

Mario
Top achievements
Rank 1
answered on 15 Nov 2011, 05:25 PM
Well, it is a workaround not a real solution... perhaps telerik should consider this particular case
0
Hello Mario,
In order to verify whether the experience behavior is a bug, please open a support ticket and provide a runnable sample page so we could reproduce it locally.
All the best,
Dimitar Terziev
the Telerik team
In order to verify whether the experience behavior is a bug, please open a support ticket and provide a runnable sample page so we could reproduce it locally.
All the best,
Dimitar Terziev
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

bas
Top achievements
Rank 1
answered on 25 Sep 2013, 03:57 PM
Thanks Mario . It is great solution.