Using a simple RadGrid that has many columns, I am unable to set the header background color using HeaderStyle-BackColor="Blue" in the <telerik:RadGrid tag.
If I have header column name that span one line, the top line it the default light gray color eaeaea from WebResource.
If I have header column names that span two lines, the top line it the default light gray color eaeaea from WebResource, and the bottom line is Blue.
It is rendered in HTML as inline ... <th class="rgHeader" style="background-color: blue;" scope="col">.
I am using v2015.3.1111.45
I can reproduce this buggy behavior in a new project with a basic Radgrid using Northwind in IE and Firefox.
using Telerik UI for ASP.NET AJAX
Telerik.Web.UI
version: 2013.3.1324.40
Visual Studio 2010
I have a RadGrid with a GridClientSelectColumn and AutoGenerateColumns="False" AllowMultiRowSelection="True"
I'm using the SelectedItems collection. It works fine the first time. I redirect to another web page after form submission and all is good. If I go back using the browser back button (ie 11) I then get unexpected functionality. For example: I checked row 1, 3 and 5. Verified that I detected that correctly. Click browser back button. Unselect row 3. I now expect to detect the remaining selected rows -- 1 and 5. Instead I detect 3 selected.
I've tried a number of variations of the code and can't get expected functionality. I've tried MasterTableView.Items.
I've tried
CheckBox chk = (CheckBox)item["GridClientSelectColumn1"].Controls[0];
if (chk.Checked) ...
Nothing works.
I'm sorry I have not posted a stripped down sanitized version of the code. I won't have time to do that until next week.
I have a RadWindow that scrolls vertically because it’s
content is long and model property is set true.
But it is not maintaining the scroll position in chrome but
it’s working fine with IE and Mozilla.
Thanks
Vikram Singh
<telerik:RadWindow ID="RadWindow1" runat="server" VisibleOnPageLoad="true" Modal="true" VisibleStatusbar="false"> <ContentTemplate> <telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" SelectedIndex="0"> <Tabs> <telerik:RadTab Text="Tab1" PageViewID="RadPageView1"> </telerik:RadTab> <telerik:RadTab Text="Tab2" PageViewID="RadPageView2"> </telerik:RadTab> <telerik:RadTab Text="Tab3" PageViewID="RadPageView3"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0"> <telerik:RadPageView ID="RadPageView1" runat="server"> Page 1 <telerik:RadEditor ID="RadEditor1" runat="server" EditModes="Design, Preview" Skin="Outlook" EnableResize="true"> <Content> Editor content 1 </Content> </telerik:RadEditor> </telerik:RadPageView> <telerik:RadPageView ID="RadPageView2" runat="server"> Page 2 <telerik:RadEditor ID="RadEditor2" runat="server" EditModes="Design, Preview" Skin="Outlook" EnableResize="true"> <Content> Editor content 2 </Content> </telerik:RadEditor> </telerik:RadPageView> <telerik:RadPageView ID="RadPageView3" runat="server"> Page 3 <telerik:RadEditor ID="RadEditor3" runat="server" EditModes="Design, Preview" Skin="Outlook" EnableResize="true"> <Content> Editor content 3 </Content> </telerik:RadEditor> </telerik:RadPageView> </telerik:RadMultiPage> </ContentTemplate></telerik:RadWindow>I have been getting the below error, have tried every solution online i could find. even found this below solution in this forum. Even in this didn't help. I'm in bad need to get a solution for this, please
Problem:
Using the Telerik controls with RadScriptManager on your login page throws one of the following errors:
ASP.NET Ajax client-side framework failed to load
'Sys' is undefined
"Telerik.Web.UI" is undefined
Cause:
I'm using RadDropdownlist in Radgrid, "SelectedValue " or "Databinding" cause DataRowView . I don't know why?
Here is my code:
datasource part
<asp:SqlDataSource ID="landmarketclasssqldatasource" runat="server" ConnectionString="<%$ ConnectionStrings:myAsystemstring %>" SelectCommand="SELECT [PK_LandMarketClass],[LandMarketClass] FROM [Ref_LandMarketClass]"> </asp:SqlDataSource>
<asp:SqlDataSource ID="mysqldatasource" runat="server" ConnectionString="<%$ ConnectionStrings:myAsystemstring %>" SelectCommand="select a.PK_land, a.pk_bookID, a.landblockname, a.capacityrate, a.landblockarea, b.landmarketclass, a.pk_period from LD_Landblock a left join Ref_LandMarketClass b on a.PK_landmarketclass=b.PK_landmarketclass where pk_bookID=@pk_bookID" InsertCommand ="insert into ld_landblock (PK_bookID ,landblockname,capacityrate,landblockarea, pk_landmarketclass, pk_period,pk_userIDlasteditor) values(@pk_bookid, @landblockname,@capacityrate,@landblockarea,@pk_landmarketclass,@pk_period,@pk_userIDlasteditor)" UpdateCommand ="update ld_landblock set landblockname=@landblockname, capacityrate=@capacityrate, pk_useridlasteditor=@pk_useridlasteditor,landblockarea=@landblockarea, pk_landmarketclass=@pk_landmarketclass where pk_land=@pk_land" DeleteCommand="delete from ld_landblock where pk_land=@pk_land" > <SelectParameters> <asp:ControlParameter ControlID="HFPK_BookID" Name="pk_bookID" PropertyName="Value" /> </SelectParameters> <InsertParameters> <asp:Parameter Name="LandBlockName" Type="String"></asp:Parameter> <asp:Parameter Name="CapacityRate" Type="Decimal" ></asp:Parameter> <asp:ControlParameter ControlID="HFPK_BookID" Type="Int32" Name="pk_bookID" PropertyName="Value" /> <asp:ControlParameter ControlID="HFUserID" Type="Int32" Name="pk_userIDlasteditor" PropertyName="Value" /> <asp:ControlParameter ControlID="HFPK_Period" Type="Int32" Name="pk_period" PropertyName="Value" /> <asp:Parameter Name="landblockarea" Type="Decimal" /> <asp:Parameter Name="pk_landmarketclass" Type="Int32" /> </InsertParameters> <UpdateParameters> <asp:Parameter Name="PK_land" Type="Object" /> <asp:Parameter Name="LandBlockName" Type="String"></asp:Parameter> <asp:Parameter Name="CapacityRate" Type="Decimal" ></asp:Parameter> <asp:ControlParameter ControlID="HFUserID" Type="Int32" Name="pk_userIDlasteditor" PropertyName="Value" /> <asp:Parameter Name="landblockarea" Type="Decimal" /> <asp:Parameter Name="pk_landmarketclass" Type="Int32" /> </UpdateParameters> <DeleteParameters> <asp:Parameter Name="PK_land" Type="Object" ></asp:Parameter> </DeleteParameters> </asp:SqlDataSource>
and raddropdownlist in radgrid
method 1
<telerik:GridDropDownColumn HeaderText="class" UniqueName="pk_landmarketclass" DataSourceID="landmarketclasssqldatasource" ListTextField="landmarketclass" ListValueField="pk_landmarketclass" DataField="pk_landmarketclass" > </telerik:GridDropDownColumn>method 2
<telerik:RadDropDownList ID="RDDLlandmarketclass" runat="server" DataSourceID="landmarketclasssqldatasource" DataTextField="landmarketclass" DataValueField="pk_landmarketclass" SelectedValue='<%# Bind("PK_landmarketclass") %>' > </telerik:RadDropDownList>neither of methods works. all of them cause datarowview error.
my reference: http://demos.telerik.com/aspnet-ajax/dropdownlist/examples/applicationscenarios/dropdownlistingird/defaultcs.aspx
http://www.telerik.com/forums/bind-dropdown-selected-value-to-a-data-source
Thanks in advance

Right now I am using open street map to show a map in the control just like your example online. And this works fine. I am now looking into adding routing on the map. I read the website that it only supports Bing maps for this.Is this for WPF only and not ASP.NET? I also saw a page on your site using layers and had a line drawn over a road to show a walking tour. The routes I want to show from one location to the other are already determined and I can supply the locations for the route. So to me the best scenario is to supply this if I can. Do you have a demo showing how I can do this to show the route on a map from point A to point B?
Thanks so much!
Warren

Hi,
What I see in the HTML chart control is almost what I need. The closest that I can get to a "generic chart" (with everything specified in the data) is binding to the XMLDataSource, but even with that, it appears that the Series Name needs to be hard-coded (not included in the XML data) or we need to write code to replace a hard-coded value with an "out of band" supplied value for each of the series names.
I've been looking through all of the demos and it appears that in every one of them, labels or titles that appear on the graph show up in the code somewhere. Then when I look at the documentation, there is no place where those labels or titles can be extracted from the data source. This would indicate to me that every graph needs to be hard-coded.
Am I missing something? I hope so. We have potentially thousands of graphing possibilities that we need to implement and would like the user to be able to design their own and this control looks pretty good, except for the "hard-coding" thing. If we could retrieve the series names from the XML input, the task would take days; if we need to individually code each chart, it will take months to staff-years.
Thanks,
Rob