I have 3 level hierarchical Panel bar. How Do I access Top level radpanelItems collection and inside top level second level panel item collection.
I would like to set different font settings for Top most level and second level. I would also like to expand only Top most level panel items. How do I do this?
I don’t see down arrow in the second level even if it has chid items it only show plain text when user clicks on it , it expands and shows child item. But I think I am supposed to see down arrow on right hand side indicating that it has child items. I see this arrow only on Topmost level.
This is how I am binding the data to the panel bar
With pnlbarCategory
.DataSource = dtCategory
.DataTextField = "Name"
.DataNavigateUrlField = ""
.DataFieldID = "Id"
.DataFieldParentID = "ParentId"
.DataValueField = "value"
.DataBind()
End With
I have a grid that opens a UserControl using the
<EditFormSettings UserControlName="SomeControl.ascx" EditFormType="WebUserControl"></EditFormSettings>
The user control contains another grid using another control for editing
<EditFormSettings UserControlName="Another.ascx" EditFormType="WebUserControl"></EditFormSettings>
The outer grid works like a champ, but the inner grid doesn't gets a blank line where the user control should be rendering. I put a break point in Page_Load on the inner grid's control in Another.ascx.cs, but it never breaks.
Is there a bug or limitation with nesting grids using a UserControl.
Thanks,
Greg
<div dir="rtl">
<telerik:RadCalendar ID="RadCalendar1" runat="server" Width="235px"
Height="144px" Skin="Web20" CultureInfo="Hebrew (Israel)"
ondayrender="RadCalendar1_DayRender" AutoPostBack="true"
onselectionchanged="RadCalendar1_SelectionChanged"
EnableMultiSelect="False" ShowOtherMonthsDays="False" ShowRowHeaders="False"
UseColumnHeadersAsSelectors="False" onprerender="RadCalendar1_PreRender">
</telerik:RadCalendar>
</div>
<div dir="rtl">
<telerik:RadDatePicker ID="RadDatePicker1" runat="server" Width="258px"
Skin="Web20" MinDate="1900-01-01" PopupDirection="BottomRight">
<Calendar RangeMinDate="01/01/1900 00:00:00" runat="server"
ViewSelectorText="x" Skin="Web20" CultureInfo="Hebrew (Israel)" EnableMultiSelect="False" ShowOtherMonthsDays="False" ShowRowHeaders="False"
UseColumnHeadersAsSelectors="False"></Calendar>
<DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
<DateInput DisplayDateFormat="dd/MM/yyyy" DateFormat="dd/MM/yyyy" runat="server" Culture="Hebrew (Israel)"></DateInput>
</telerik:RadDatePicker>
</div>
Thanks,
Shay.