Hi
I have issues with a filter that i have placed in a radwindow - the dropdowns ect is put behind the window its self - this is my code:
<
telerik:RadWindow
RenderMode
=
"Lightweight"
ID
=
"modalPopup"
runat
=
"server"
Width
=
"360px"
Height
=
"360px"
Modal
=
"true"
OffsetElementID
=
"main"
Style
=
"z-index: 100001;"
Skin
=
"Windows7"
>
<
ContentTemplate
>
<
telerik:RadFilter
ID
=
"TableEditFilter"
runat
=
"server"
FilterContainerID
=
"rgTableEdit"
ExpressionPreviewPosition
=
"Bottom"
Style
=
"z-index: 100002;"
/>
</
ContentTemplate
>
</
telerik:RadWindow
>
<
script
type
=
"text/javascript"
>
//
<![CDATA[
function ShowmodalPopup(sender, args) {
$find("<%=modalPopup.ClientID%>").show();
return false;
}
//]]>
</
script
>
and is activated by a button click in a GridTemplateColumn:
<
telerik:RadButton
Image-ImageUrl
=
"~/Images/filter_16x16.png"
runat
=
"server"
ID
=
"FilterButton"
Width
=
"16"
Height
=
"16"
skin
=
"Windows7"
OnClientClicked
=
"ShowmodalPopup"
AutoPostBack
=
"false"
/>