radgrid

Visual Studio 2008 does not add control to designer file when adding it into a Telerik RadGrid EditFormTemplate

I am using a RadGrid to display data gathered from various xml files. I have defined an EditFormTemplate where additional data can be seen/edited. Now whenever I add controls into this template, the designer doesn't add the necessary control to the designer.cs codebehind file. Why? Edit: Most specifically, I have a asp:DropDownList that...

RadGrid or GridView Doesn't Match Business Entity for Report

I'm in the process of creating a report in ASP.NET. The business object that I'm retrieving contains all the information I need, but I can't just DataBind() it because the report isn't simply displaying the business entities. I need to arrange the columns in a certain way, do some calculations for each row and manually add columns, plus ...

CRUD Operations with join table using LINQ and Telerik radGridView

What is the best CRUD design pattern for an editable grid that will be databound to a joined query derived from LINQ? Background It's probably irrelevant whether I'm using Telerik's radGridView because this situation may pertain to any list control but I thought that I'd mention that if it helps. At any rate, I have two tables. One tab...

Sort Telerik RadGrid for ASP.NET MVC

Hi. What is the way to sort Telerik's RadGrid ? I don't want to add a form server tag, and I don't want to use a user control with code behind like an example I've seen (since I think these are not true MVC solutions, am I right ?). Please point me to an example or post example code... Thanks in advance. ...

RadGrid Specify ComboBox skin on edit?

I have a grid and a skin specified for that and it works fine. However, on the contained GridDropDownColumn columns, when it shifts to edit mode, the combo box is created nicely, but does NOT inherit the skin of the grid as the text boxes do. This results is a mixture of font sizes in the edit row (inline edit). How can I tell the cre...

how to Grid without horizantal scroll and give vertical scroll header style

Hi all i use radgrid with scrolling but when scrolling is on the header (see the link for more info) of grid above the scroll looks different than the content header and on IE8 horizantal scroll is shown The html markup of radgrid is below <telerik:RadGrid HeaderStyle-Height="20px" HeaderStyle-Width="500" BackColor="#ebebeb" ...

Telerik RadGrid Custom Aggregate - Unwanted Text

When using a Telerik RadGrid with a custom aggregate, I'm trying to display a simple string in the footer row, such as "Total". However, the RadGrid seems to automatically insert text for me at the beginning of the string, making it say "Custom: Total". How do I turn this off? ...

Rad Telerik GridGroupByExpression is not grouped until I click the sort grid button

I have a RadGrid with a datatable as it's source. I have AllowCustomPaging set to true. <telerik:RadGrid runat="server" ID="RadGridSearchResults" PageSize="50" AllowPaging="true" AllowCustomPaging="true" OnNeedDataSource="RadGridSearchResults_NeedDataSource" Skin="Default"> <PagerStyle Mode="NextPrevNumericAndAdvanced" /> </telerik:Rad...

Adding RadComboBox to RadGrid Edit

I have added a RadControl, RadGrid and I need to add a radComboBox in the edit mode. When user clicks on the radComboBox, I need to get both "text" and "value" of the radComboBox to save to table when user updates values. <telerik:RadComboBox ID="RadComboBox1" Runat="server" DataSourceID="SqlDataSource1" DataTextField="do...

Telerik RadGrid Export to Excel. Missing operand before '=' operator.

I am getting the error Missing operand before '=' operator. when I try and export and the code is running fine in the grid. Here is the code for the web part. The error only occurs on the rebind. It works fine in the grid itself. Is there any way to narrow down the exact thing it is erroring on? I am willing to pay for a support / so...

Radgrid and RadFormDecorator

Guys, I have an ASP.NET application using the Telerik Q1 2009 controls. I have a masterpage, which has a FormDecorator control in the master page. In my ASPX page, I have a RadGrid, with the following definition: <telerik:RadGrid ID="gridExclusions" runat="server" AllowPaging="True" AllowSorting="True" ...

WPF :Inheriting styles for third party controls

Hi, I am using telrik components for wpf. I want to get "Select all" Check Box on Grid Header cell I have Common ResourceDictionary Style.Xaml , it has <ResourceDictionary xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"&gt; <Style TargetType="telerik:GridViewHeaderCell"> <Setter Property="FontWeight" Va...

Add a custom FormView to a RadGrid Edit Item Template

I had a Dropdrowlist and FormView to work hand in hand to edit/update data. Now I need to add a radGrid and when user clicks on the a row, I need the formview to be populated or I need my existing formview to be populated inside the RadGrid's edit item template. Thanks. ...

How to format radgrid cell programmatically

I have to format (backcolor, forecolor, font style) a radgrid's cells depending on the value of the cell. For example If the value is negative set the fore color of that cell as red. Can any one please tell me how this can be achieved? ...

Problem Exporting RadGrid/GridView to Word

I'm trying to export contents of a RadGrid to Word (same problem with basic ASP.NET GridView). The grid contains images and descriptions. Unfortunately, I don't have Word, just OpenOffice, but I see the same problem happening with Word. The document contains references to images, and text, but the images are missing. ...

Access all Data from databound RadGrid?

Is there are way to access all of the data from a databound RadGrid? I can acess the data that is currently showing on the RadGrid, but is there anyway to access the data that is bound to the control but not shown? Say I have 125 records, but only 25 are shown on the page, how do I access the other 100? ...

Telerik - RadGrid columns freeze after first postback not on initial page load.

The title pretty much says it all. I have a grid with columns that start freezing only after a command event has triggered a postback to the AjaxManager. Here is a sample of my markup... <PagerStyle Mode="NextPrevNumericAndAdvanced"/> <ClientSettings> <Scrolling AllowScroll="true" UseStaticHeaders="true" FrozenColumnsCount="2" /...

Rad Grid + jquery

I am having a rad grid on my page and a rad tab strip the rquirement is that when the user clicks on any of the row in the rad grid all the details of the particular row must be populated in the rad tab strip.My function for populating the rad tab strip is written in jquery,my problem is how to get the items in the rad grid.I had written...

Passing the value of a readonly radgrid column to a stored procedure

I have a radgrid bound to a SqlDataSource that includes a hidden, readonly column that stores a pk. I want to pass the value bound to that column to a stored procedure for Updates but the default behavior when the column is readonly is not to pass the parameter to the sqlDataSource. My question is whether there is a way to pass that va...

Changing how a telerik radgrid marks a row as "modified"

I am working with the Telerik Winforms Radgrid version 2009.2.9.701 in visual studio 2008 (C#) and I've come across and issue I can't seem to find a solution for. When the radgrid is populated and the user changes a cell within a row, the row is not flagged as "modified" until the user actually clicks onto another location on the datagr...