<td class="ms-formbody"> <telerik:RadComboBox ID="rcbxContinuity" runat="server" AutoPostBack="false" HighlightTemplatedItems="True" MarkFirstMatch="true" EmptyMessage="Choose a continuity" Width="175px" Sort="Ascending" DropDownAutoWidth="Enabled"> </telerik:RadComboBox></td><td class="ms-formbody"> <telerik:RadComboBox ID="rcbxContinuity" runat="server" CheckBoxes="true" Width="175px" Sort="Ascending" EnableCheckAllItemsCheckBox="false" EmptyMessage="Choose continuity" DropDownAutoWidth="Enabled"> </telerik:RadComboBox></td>.ms-formbody{ font-family: verdana; font-size: 12px; vertical-align: top; background: #f6f6f6; color: #000000 !important; border-top: 1px solid #d8d8d8; padding: 3px 6px 4px 6px;}<telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="true" AllowSorting="true" ShowGroupPanel="true" PageSize="5" AllowPaging="true"> <MasterTableView ClientDataKeyNames="IdNavegacionenMenus"> <Columns> <telerik:GridBoundColumn DataField="IdNavegacionenMenus" UniqueName="ClId" HeaderText="Id Navegacion" DataType="System.Int64"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="FechaNavegacion" UniqueName="ClHora" HeaderText="Fecha suceso" DataType="System.DateTime" ></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="NombreUsuario" DataType="System.String" UniqueName="Nombre" HeaderText="Nombre"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="OpcionNavegada" DataType="System.String" UniqueName="Opcion" HeaderText="Opcion navegada"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="CodigoUsuario" DataType="System.String" UniqueName="Codigo" HeaderText="Codigo"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="MacEntrada" DataType="System.String" UniqueName="Mac" HeaderText="Mac"></telerik:GridBoundColumn> </Columns> </MasterTableView> <ClientSettings AllowGroupExpandCollapse="true"> <DataBinding Location="http://localhost:50155/ODataAuditoria.svc" DataService-Type="OData" ResponseType="JSONP"> <DataService TableName="NavegacionenMenus" Type="OData" /> </DataBinding> </ClientSettings></telerik:RadGrid>We have a telerik grid with 2 freezed columns . we have used below code to make the column freeze.
<Scrolling AllowScroll="True" SaveScrollPosition="true" UseStaticHeaders="true" FrozenColumnsCount="2" />
We have a hyperlink in a column of Grid. And Clicking on that link one popup opens. But when we scroll and click on that link then it shows 3 columns and that popup never opens. and also horizontal scrollbar gets disappear. Please find the screen shots for the same in attached doc.
Please provide the solution asap.
protected void rcOrderTotalStages_ItemDataBound(object sender, ChartItemDataBoundEventArgs e) { //bind the legend to the report type title name from SQL data source e.SeriesItem.Name = (string)DataBinder.Eval(e.DataItem, "report_type_title") + " (" + (Int32)DataBinder.Eval(e.DataItem, "report_type_count") + ")"; e.ChartSeries.Appearance.ShowLabelConnectors = true; e.SeriesItem.ActiveRegion.Tooltip = (string)DataBinder.Eval(e.DataItem, "report_type_desc") + " (" + (Int32)DataBinder.Eval(e.DataItem, "report_type_count") + ")"; //for each of the chart series set the exploded property to true and bind a colour to the pie segment depending on status/report_type-title int ChartSeriesItemCount = e.ChartSeries.Items.Count; for (int i = 0; i < ChartSeriesItemCount; i++) { e.ChartSeries.Items[i].Appearance.Exploded = true; string status = ""; status = (string)DataBinder.Eval(e.DataItem, "report_type_title"); switch (status) { case "Delivered": e.ChartSeries.Items[i].Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid; e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Green; break; case "Bill & Hold": e.ChartSeries.Items[i].Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid; e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Green; break; case "Prep Complete": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Green; break; case "In Prep": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Orange; break; case "Sent To Schedule": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Orange; break; case "On Order/Ghost Slot": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Orange; break; case "On Order": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Red; break; case "Stock": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Red; break; case "Not On Stock": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Red; break; case "Cancelled": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Blue; break; case "Status Unknown": e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Gray; break; default: e.ChartSeries.Items[i].Appearance.FillStyle.MainColor = System.Drawing.Color.Yellow; break; } } }I have a very strange problem with a slider, here the situation :
I have a radgrid with paging enabled in slider mode, but when I load the page the drag handle is not at the good position, it's at the left of the decrease handle of the slider (see the pictures attached). The strange thing is that it does not happen in every screens. The very strange thing is that only happen the first time the screen is loaded, if I move the drag handle and change the page of the grid and then if I go back to the first page the position of the drag handle is correct, and if I leave the screen and come back the drag handle will be in the correct position. But if I clear the cache and come back the position is incorrect.
When I look upon the HTML with the IE web developper tool I see that the "left" property of the drag handle element is "-14px", and if I look when the position is correct then the property is "-4px". So the question is where this -10px come from? Is it javascript? Is it CSS? Is it something in the screen that mess with the drag handle?
This problem occurs after we changed our version of Telerik, we were in 2008.3.1314.20 and we moved to 2013.1.417.35 Telerik version for ASP.NET AJAX.