or
| protected void CategoryGrid_ItemCreated(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridNestedViewItem) |
| { |
| //Find the RadGrid |
| radProdGrid = e.Item.FindControl("radProdutsGrid") as RadGrid; |
| // Find the chart |
| rcProduct = e.Item.FindControl("RadChart2") as RadChart; |
| radProdGrid.DataSource = productInfoView; |
| } |
| } |
<style type="text/css">
.rdContent,.raddock, .raddockzone, .rdSideBorders
{
overflow:visible !important;
}
</style>
Tha change to the style sheets solves the flyout and removes the scroll bars.
But if a another raddock is below it - how do you get the menu to appear over the top of the menu and not go behind it?
I have tried z-index but to no success.
Many thanks.
John