or
Hi
I'm using a Splitter to show several web pages. My problem is that I have a page with a menu on top and an Iframe object to load another page on this page and when I load this in a Splitpanel, I cannot scroll the page to the bottom. I want the scrollbar in Splitter panel not in Iframe object.
I create a different page with floating panels (with DIV), where I put the RadMenu on the Left and the Iframe object on the right. With this example I know that my Iframe object will use all the page height. However, when I put this page in the Splitpanel, I have no vertical scrollbar at all.
All other regular pages work ok with Splitter.
This is the code for my page with Iframe Object
Protected
Sub
RadGrid1_ItemDataBound(
ByVal
sender
As
Object
,
ByVal
e
As
GridItemEventArgs)
If
e.Item.
GetType
()
Is
GetType
(GridDataItem)
Then
Dim
item
As
GridDataItem =
DirectCast
(e.Item, GridDataItem)
Dim
btn
As
ImageButton
If
item(
"Delete"
).Controls(0) IsNot
Nothing
Then
btn =
DirectCast
(item(
"Delete"
).Controls(0), ImageButton)
btn.ToolTip =
"Delete this item"
btn.AlternateText =
"Delete this item"
ElseIf
item(
"Edit"
).Controls(0) IsNot
Nothing
Then
btn =
DirectCast
(item(
"Edit"
).Controls(0), ImageButton)
btn.ToolTip =
"Edit this item"
btn.AlternateText =
"Delete this item"
End
If
End
If
End
Sub