I am trying to replicate the look and feel of an existing web app and need to have a menu in a grid command row that includes a dropdownlist. I have added the menu but the dropdown list is being hidden by the grid. I've tried changing the z-index but cannot get the list to appear in front of the grid.
<
telerik:RadGrid
ID
=
"rgDiscounts"
runat
=
"server"
Width
=
"100%"
RenderMode
=
"Lightweight"
AllowSorting
=
"true"
AllowMultiRowSelection
=
"true"
Skin
=
"Max2017"
EnableEmbeddedSkins
=
"false"
OnNeedDataSource
=
"rgDiscounts_NeedDataSource"
OnItemCreated
=
"rgDiscounts_ItemCreated"
OnItemDataBound
=
"rgDiscounts_ItemDataBound"
OnUpdateCommand
=
"rgDiscounts_UpdateCommand"
OnInsertCommand
=
"rgDiscounts_InsertCommand"
OnDeleteCommand
=
"rgDiscounts_DeleteCommand"
OnPreRender
=
"rgDiscounts_PreRender"
OnItemCommand
=
"rgDiscounts_ItemCommand"
>
<
MasterTableView
DataKeyNames
=
"Discount_Id"
ClientDataKeyNames
=
"Discount_Id"
AllowMultiColumnSorting
=
"true"
AutoGenerateColumns
=
"false"
CommandItemDisplay
=
"Top"
>
<
CommandItemTemplate
>
<
telerik:RadMenu
ID
=
"rmDiscounts"
runat
=
"server"
Width
=
"100%"
ShowToggleHandle
=
"true"
BorderStyle
=
"none"
EnableRoundedCorners
=
"true"
EnableShadows
=
"true"
Skin
=
"Max2017"
EnableEmbeddedSkins
=
"false"
OnClientItemClicking
=
"OnClientItemClicking"
OnClientItemClicked
=
"onDiscountsClientItemClicked"
OnItemClick
=
"rmDiscounts_ItemClick"
>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Add"
BorderStyle
=
"None"
/>
<
telerik:RadMenuItem
Text
=
"Delete"
BorderStyle
=
"None"
/>
<
telerik:RadMenuItem
Text
=
"Items"
BorderStyle
=
"None"
style
=
"z-index: 9999;"
>
<
GroupSettings
ExpandDirection
=
"Down"
Width
=
"200px"
/>
<
Items
>
<
telerik:RadMenuItem
Text
=
"Add Product Provider"
></
telerik:RadMenuItem
>
<
telerik:RadMenuItem
Text
=
"Add Product Group"
></
telerik:RadMenuItem
>
<
telerik:RadMenuItem
Text
=
"Add Product Group Type"
></
telerik:RadMenuItem
>
</
Items
>
</
telerik:RadMenuItem
>
<
telerik:RadMenuItem
BorderStyle
=
"None"
ImageUrl
=
"Images/Ico_Refresh_18x18_blk.png"
/>
</
Items
>
</
telerik:RadMenu
>
</
CommandItemTemplate
>
<
Columns
>
......................................
</
Columns
>
</
MasterTableView
>
<
ClientSettings
AllowKeyboardNavigation
=
"true"
EnablePostBackOnRowClick
=
"true"
>
<
Selecting
AllowRowSelect
=
"true"
UseClientSelectColumnOnly
=
"true"
/>
<
Scrolling
AllowScroll
=
"true"
UseStaticHeaders
=
"true"
ScrollHeight
=
"100%"
/>
<
ClientEvents
OnGridCreated
=
"GridCreated"
OnRowClick
=
"GridRowClicked"
/>
</
ClientSettings
>
</
telerik:RadGrid
>
Kyle