Hi,
I have a RadPanelBar, which includes several panelitems. I put a radtreeview under each of the item. then add the first-level treenodes to them programmatically, and the node Expandmode has been set to "ServerSideCallBack" so that the second level node can be expanded on demand.
The program works ok but the only issue is the Scrollbar does not appear automartcally when I expanded the treenode and the content exceed the height. But if I set the Expand="True" and "Selected="true" at the panelitem then the scrollbar appear. But logically only one can be expanded and selected, how to fix this?
I am using the latest build (2012.3.1205.35) and tried on IE 9/Google Chrome, same result
<
telerik:RadPanelBar
ID
=
"panelBarMain"
runat
=
"server"
Width
=
"100%"
Height
=
"100%"
ExpandMode
=
"FullExpandedItem"
Skin
=
"Office2007"
><
BR
><
Items
><
BR
><
telerik:RadPanelItem
Value
=
"Trackings"
Text
=
"Trackings"
Visible
=
"false"
><
BR
><
ContentTemplate
><
BR
><
telerik:RadTreeView
ID
=
"treeTracking"
runat
=
"server"
><
BR
><
Nodes
><
BR
></
Nodes
><
BR
></
telerik:RadTreeView
><
BR
></
ContentTemplate
><
BR
></
telerik:RadPanelItem
><
BR
><
telerik:RadPanelItem
Value
=
"Tenders"
Text
=
"Tenders"
Visible
=
"false"
Expanded
=
"true"
Selected
=
"true"
><
BR
><
ContentTemplate
><
BR
><
telerik:RadTreeView
ID
=
"treeTenders"
runat
=
"server"
><
BR
></
telerik:RadTreeView
><
BR
></
ContentTemplate
><
BR
></
Items
><
BR
></
telerik:RadPanelBar
>