<script type="text/javascript"> function focusItem(panelbar, args) { var item = args.get_item(); if (item.get_level() == 0) item.focusFirstChild(); } </script> <telerik:RadPanelBar ID="PostsRadPanelBar" runat="server" Skin="Web20" Font-Size="16px" onclientitemfocus="focusItem" ExpandMode="SingleExpandedItem" > <Items> <telerik:RadPanelItem Text="Office" Expanded="True"> <Items> <telerik:RadPanelItem Text="Office Detail"> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Addresses"> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Communications"> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Site Specifics"> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Positions"> <Items> <telerik:RadPanelItem Text="Position Detail"> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Assignment Detail (FSO)"> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Products & Services"> <Items> <telerik:RadPanelItem Text="Products & Services Information"> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Residences"> <Items> <telerik:RadPanelItem Text="Residence Information"> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Vehicles"> <Items> <telerik:RadPanelItem Text="Vehicle Detail"> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Purchase & Disposition"> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> <telerik:RadPanelItem Text="Security"> <Items> <telerik:RadPanelItem Text="Security Information"> </telerik:RadPanelItem> </Items> </telerik:RadPanelItem> </Items> </telerik:RadPanelBar>htmlfile: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept focus.
The Scheduler is set up as follows:
RadScheduler1.DataKeyField = "ID"RadScheduler1.DataStartField = "DateStart"RadScheduler1.DataEndField = "DateEnd"RadScheduler1.DataDescriptionField = "Comment"RadScheduler1.DataSubjectField = "Description"RadScheduler1.DataRecurrenceField = "RecurrenceRule"RadScheduler1.DataRecurrenceParentKeyField = "ParentID"RadScheduler1.DataSource = mColAppointmentsRadScheduler1.DataBind()Note that mColAppointments is the List(Of JobAppointment) - a collection of Appointment objects.
There are two Issues I can see with the above:
In both cases, I think the solutiion might lie in doing some sort of translation when reading and writing the recurrence rule and parent id to/from the database. But I am not sure what exactly is required here.
PS - I have not submitted a support ticket as I thought this may be useful to others using this forum.
Any help much appreciated.
Regards.

| function validateGroup(events, args) { |
| var combo = <%=RadComboBoxGroupListing.ClientID%>; |
| if(combo.GetText() == combo.Items(0).Text) |
| { |
| args.IsValid = true; |
| } |
| else |
| { |
| args.IsValid = false; |
| } |
| } |
Hi all:
I use Radeditor to allow user to enter the text then save to database. User can view what they entered through Report
Now the issue is that the <br/> didn't encrypt correctly and the text didn't display with new line. any suggestion?
Example: I save two paragraph to database which entered through Editor.
line 1 <br /><br /><br /><br />line 2 <br/ ><br /><br />
After I display on the report, it supposed to be
line 1
line 2
line 3
but it displays line1line2line3
Any suggestion?
the code which I defined the Radeditor as below:
<telerik:RadEditor ID="ProgressNoteEditor" Language="en-GB" AutoResizeHeight="true" NewLineMode="Br" Height="150px" Runat="server" ContentFilters="ConvertToXhtml,MozEmStrong" MaxTextLength="4000" EditModes="Design" SkinID="" Width="100%" ToolsFile="~/configurationFile/BasicEditTool.xml" StripFormattingOptions="AllExceptNewLines" > <CssFiles> <telerik:EditorCssFile Value="~/StyleSheets/RadEditorEditArea.css" /> </CssFiles> <ContextMenus> <telerik:EditorContextMenu TagName="P"> <telerik:EditorTool Name="Cut" /> <telerik:EditorTool Name="Copy" /> <telerik:EditorTool Name="Paste" /> </telerik:EditorContextMenu> <telerik:EditorContextMenu TagName="BODY"> <telerik:EditorTool Name="Cut" /> <telerik:EditorTool Name="Copy" /> <telerik:EditorTool Name="Paste" /> </telerik:EditorContextMenu> </ContextMenus> </telerik:RadEditor>Thanks
Helena