<telerik:RadScheduler runat="server" ID="RadScheduler1" Skin="Vista" DataKeyField="ID" DataSubjectField="subject" DataStartField="start" DataEndField="end" Height="650px" Width="375px" SelectedView="DayView" ShowFooter="true" RowHeight="20px" ShowViewTabs="false" DayStartTime="08:00:00" DayEndTime="17:00:00" FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" EnableDescriptionField="true" AppointmentStyleMode="Default" EnableResourceEditing="true" OnDataBound="RadScheduler1_DataBound" OnAppointmentDataBound="RadScheduler1_AppointmentDataBound" OnClientFormCreated="schedulerFormCreated" OnAppointmentDelete="RadScheduler1_AppointmentDelete" OnAppointmentUpdate="RadScheduler1_AppointmentUpdate" OnAppointmentInsert="RadScheduler1_AppointmentInsert"> <AdvancedForm Modal="false" /> <TimelineView UserSelectable="false" /> <AppointmentTemplate> <div class="rsAptSubject"> <%# Eval("Subject") %> </div> </AppointmentTemplate> <TimeSlotContextMenuSettings EnableDefault="true" /> <AppointmentContextMenuSettings EnableDefault="true" /> <ResourceTypes> <telerik:ResourceType KeyField="CPK_CATEGORY" Name="Department" TextField="category" ForeignKeyField="DepartmentID" DataSourceID="dsTodoCategory" /> </ResourceTypes> <AdvancedEditTemplate> <scheduler:AdvancedForm runat="server" ID="AdvancedEditForm1" Mode="Edit" Subject='<%# Bind("Subject") %>' Description='<%# Bind("Description") %>' Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' RecurrenceRuleText='<%# Bind("RecurrenceRule") %>' RoomID='<%# Bind("Room") %>' DepartmentID='<% Bind("Department") %>' /> </AdvancedEditTemplate> <AdvancedInsertTemplate> <scheduler:AdvancedForm runat="server" ID="AdvancedInsertForm1" Mode="Insert" Subject='<%# Bind("Subject") %>' Start='<%# Bind("Start") %>' End='<%# Bind("End") %>' Description='<%# Bind("Description") %>' RecurrenceRuleText='<%# Bind("RecurrenceRule") %>' RoomID='<%# Bind("Room") %>' DepartmentID='<% Bind("Department") %>' /> </AdvancedInsertTemplate> </telerik:RadScheduler> In AdvancedForm.ascx: <asp:Panel runat="server" ID="ResourceControls"> <ul class="rsResourceControls"> <li> <scheduler:ResourceControl runat="server" ID="ResRoom" Type="Room" Label="Room:" Skin='<%# Owner.Skin %>' /> </li> <li> <scheduler:ResourceControl runat="server" ID="ResDepartment" Type="Department" Label="Department:" Skin='<%# Owner.Skin %>' /> </li> </ul> </asp:Panel>Imports System.IO Partial Class test Inherits System.Web.UI.Page Protected Sub thumbRotator_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles thumbRotator.DataBound If thumbRotator.Items.Count < 4 Then thumbRotator.RotatorType = Telerik.Web.UI.RotatorType.FromCode End If End Sub Protected Sub thumbRotator_ItemClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadRotatorEventArgs) Handles thumbRotator.ItemClick Dim thumbUrl As String = CType(e.Item.FindControl("thumbImage"), HtmlImage).Src Dim previewUrl As String = "~/App_Content/gallery/" & Path.GetFileName(thumbUrl) imagePreview.ImageUrl = previewUrl End Sub Protected Sub DataList1_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataListCommandEventArgs) Handles DataList1.ItemCommand If e.CommandName = "Gallery" Then ObjectDataSource1.SelectParameters("GalleryID").DefaultValue = e.CommandArgument ObjectDataSource2.SelectParameters("GalleryID").DefaultValue = e.CommandArgument thumbRotator.DataBind() End If End Sub End Class<body> <form id="form1" runat="server"> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadAjaxManager runat="server" ID="RadAjaxManager1"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="thumbRotator"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="imagePreview" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <table> <tr> <td colspan="3"> <asp:DataList ID="DataList1" runat="server" DataSourceID="ObjectDataSource1" DataKeyField="GalleryID" RepeatColumns="5"> <ItemTemplate> <img src='<%# DataBinder.Eval(Container.DataItem, "ImageID", "thumbs/{0}") %>' runat="server" id="thumbImage" /><br /> <asp:LinkButton ID="LinkButton1" runat="server" Text='<%# Eval("Title") %>' CommandName="Gallery" CommandArgument='<%# Eval("GalleryID") %>' /> </ItemTemplate> </asp:DataList> <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetGalleriesByParent" TypeName="GalleryManager" > <SelectParameters> <asp:Parameter DefaultValue="0" Name="GalleryID" Type="Int32" /> <asp:Parameter Name="ShowParentGallery" Type="Boolean" DefaultValue="True" /> </SelectParameters> </asp:ObjectDataSource> </td> </tr> <tr> <td> <img src="gallery_scroll_left.png" id="gallery_scroll_left" /> </td> <td style="vertical-align:middle; height: 140px;"> <telerik:RadRotator ID="thumbRotator" runat="server" RotatorType="ButtonsOver" Width="572" Height="118px" ItemHeight="118" ItemWidth="145" FrameDuration="1" ScrollDirection="Left,Right" DataSourceID="ObjectDataSource2"> <ItemTemplate> <div class="itemTemplate"> <img src='<%# DataBinder.Eval(Container.DataItem, "ImageUrl", "thumbs/{0}") %>' runat="server" id="thumbImage" /> </div> </ItemTemplate> <ControlButtons LeftButtonID="gallery_scroll_left" RightButtonID="gallery_scroll_right" /> </telerik:RadRotator> <asp:ObjectDataSource ID="ObjectDataSource2" runat="server" SelectMethod="GetImagesByGallery" TypeName="GalleryManager"> <SelectParameters> <asp:Parameter DefaultValue="0" Name="GalleryID" Type="Int32" /> </SelectParameters> </asp:ObjectDataSource> </td> <td> <img src="gallery_scroll_right.png" id="gallery_scroll_right" /> </td> </tr> <tr> <td colspan="3" style="text-align: center;"> <asp:Image ID="imagePreview" runat="server" ImageUrl="no-image.png" /> </td> </tr> </table> </form> </body> 

Hi.
I'm using GridDropDownColumn to display and edit values in grid:
1.<telerik:GridDropDownColumn DataField="MYFIELD" HeaderText="Entity" UniqueName="MYFIELD"2. DataSourceID="EntityDataSource" ListValueField="ID" ListTextField="NAME" EnableEmptyListItem="true">4.</telerik:GridDropDownColumn>1.<asp:ObjectDataSource ID="EntityDataSource" runat="server" SelectMethod="GetEntityList" 2.TypeName="..."/><!-- 2010.2.713.40 --><ul class="rtcTagList">
<li class="rtcTagItem"><a href="/issues/1/agriculture-food-nutrition.aspx" rel="tag" title="Agriculture, Food, Nutrition" style="font-size:10px;">Agriculture, Food, Nutrition</a></li><li class="rtcTagItem"><a href="/issues/2/commerce-industry.aspx" rel="tag" title="Commerce & Industry" style="font-size:11px;">Commerce & Industry</a></li><li class="rtcTagItem"><a href="/issues/3/culture-media.aspx" rel="tag" title="Culture & Media" style="font-size:10px;">Culture & Media</a></li><li class="rtcTagItem"><a href="/issues/4/education-labor.aspx" rel="tag" title="Education & Labor" style="font-size:13px;">Education & Labor</a></li><li class="rtcTagItem"><a href="/issues/5/energy.aspx" rel="tag" title="Energy" style="font-size:11px;">Energy</a></li><li class="rtcTagItem"><a href="/issues/6/environment-natural-resources.aspx" rel="tag" title="Environment & Natural Resources" style="font-size:13px;">Environment & Natural Resources</a></li><li class="rtcTagItem"><a href="/issues/7/government-operations-budget.aspx" rel="tag" title="Government Operations & Budget" style="font-size:11px;">Government Operations & Budget</a></li><li class="rtcTagItem"><a href="/issues/8/health-human-services.aspx" rel="tag" title="Health & Human Services" style="font-size:15px;">Health & Human Services</a></li><li class="rtcTagItem"><a href="/issues/9/immigration.aspx" rel="tag" title="Immigration" style="font-size:11px;">Immigration</a></li><li class="rtcTagItem"><a href="/issues/10/international-relations-trade.aspx" rel="tag" title="International Relations & Trade" style="font-size:20px;">International Relations & Trade</a></li>
</ul><input id="ctl00_ctl00_ctl00_cphBody_cphContent_cphContent_fsProfile_cldTerms_ClientState" name="ctl00_ctl00_ctl00_cphBody_cphContent_cphContent_fsProfile_cldTerms_ClientState" type="hidden" />
As you can see, the <li> elements are all jammed together with no carriage returns, spaces, tabs, nothing, which is not standard. At a minimum, you'd write an unordered list like this:
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
If I view source of my page, copy all the HTML and put it in a new static HTML page with carriage returns between the <li> elements as I indicated in the example above, the page displays correctly in both IE7 and IE8. So I ultimately need the HTML output of the TagCloud to look like this:
<!-- 2010.2.713.40 --><ul class="rtcTagList">
<li class="rtcTagItem"><a href="/issues/1/agriculture-food-nutrition.aspx" rel="tag" title="Agriculture, Food, Nutrition" style="font-size:10px;">Agriculture, Food, Nutrition</a></li>
<li class="rtcTagItem"><a href="/issues/2/commerce-industry.aspx" rel="tag" title="Commerce & Industry" style="font-size:11px;">Commerce & Industry</a></li>
<li class="rtcTagItem"><a href="/issues/3/culture-media.aspx" rel="tag" title="Culture & Media" style="font-size:10px;">Culture & Media</a></li>
<li class="rtcTagItem"><a href="/issues/4/education-labor.aspx" rel="tag" title="Education & Labor" style="font-size:13px;">Education & Labor</a></li>
<li class="rtcTagItem"><a href="/issues/5/energy.aspx" rel="tag" title="Energy" style="font-size:11px;">Energy</a></li>
<li class="rtcTagItem"><a href="/issues/6/environment-natural-resources.aspx" rel="tag" title="Environment & Natural Resources" style="font-size:13px;">Environment & Natural Resources</a></li>
<li class="rtcTagItem"><a href="/issues/7/government-operations-budget.aspx" rel="tag" title="Government Operations & Budget" style="font-size:11px;">Government Operations & Budget</a></li>
<li class="rtcTagItem"><a href="/issues/8/health-human-services.aspx" rel="tag" title="Health & Human Services" style="font-size:15px;">Health & Human Services</a></li>
<li class="rtcTagItem"><a href="/issues/9/immigration.aspx" rel="tag" title="Immigration" style="font-size:11px;">Immigration</a></li>
<li class="rtcTagItem"><a href="/issues/10/international-relations-trade.aspx" rel="tag" title="International Relations & Trade" style="font-size:20px;">International Relations & Trade</a></li>
</ul><input id="ctl00_ctl00_ctl00_cphBody_cphContent_cphContent_fsProfile_cldTerms_ClientState" name="ctl00_ctl00_ctl00_cphBody_cphContent_cphContent_fsProfile_cldTerms_ClientState" type="hidden" />