
Can you please confirm that Radcontrols for ASP. NET AJAX Q3 2009 SP2 - version 2009.3.1314 is IE8 compatible?
We are switching to windows 7/ie8 environment soon and on the preliminary testing we are seeing the controls layout look very different in IE8.
Please advise.
I followed this demo
http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/nestedviewtemplate/defaultcs.aspx
And now it works perfectly in IE but in Firefox it makes the browser not responding. Are you aware of this issue?
This is just a copy/paste operation with the same data .. i even created DB with identical tables structure.
Please let me know if i can fix this issue somehow.
Thanks
<telerik:GridTemplateColumn HeaderText="Chart" UniqueName="ColChart"> <ItemTemplate> <uc3:kpidropdownchart ID="kpiDropDownChart1" runat="server" seriesid='<%#Bind("SeriesID") %>' selectedChart='<%#Bind("ChartType") %>'/> </ItemTemplate> </telerik:GridTemplateColumn>Imports Telerik.Web.UI Public Class kpiDropDownChart Inherits System.Web.UI.UserControl Private _seriesid As Integer Private _selectedChart As String Private _chartid As Integer Public Property SeriesID() As Integer Get Return (_seriesid) End Get Set(ByVal value As Integer) _seriesid = value End Set End Property Public Property selectedChart() As String Get Return (_selectedChart) End Get Set(ByVal value As String) _selectedChart = value End Set End Property Protected Sub ddAddFieldChart_PreRender(ByVal sender As Object, ByVal e As EventArgs) Handles ddAddFieldChart.PreRender Dim chartTypeTable As DataTable = kpicommonListFns.GetTimeChartList Dim row As DataRow For Each row In chartTypeTable.Rows Dim CItem As RadComboBoxItem = New RadComboBoxItem CItem.Text = row("Description") & _seriesid CItem.Value = row("chartRef") CItem.ImageUrl = "~/images/chartImages/" & row("IconName") ddAddFieldChart.Items.Add(CItem) Next ddAddFieldChart.SelectedValue = _selectedChart End Sub Private Sub ddAddFieldChart_SelectedIndexChanged(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs) Handles ddAddFieldChart.SelectedIndexChanged '###### when this even fires _seriesid = nothing #################### Dim thisSeries As kpiChartSeries = New kpiChartSeries(_seriesid) thisSeries.SetChartType(ddAddFieldChart.SelectedValue) End SubEnd ClassI have a RadRotator binded to datatable and it works fine except that it is cutting the images off if they differ in size.
Means i am using it as Banner rotator but i load different size banners. How do i make it flexible so the rotator adapts to the image height. If i set the height it works fine for the images that match this height but other ones with other heights are cut off to the top.
Thanks
EDIT: actually even if i load images with the same height it is cutting off the top of the images for about 10px. If i set the height it works fine.
How do i make it working without setting the height and itemheight?

