Questions tagged [radgrid]

RadGrid is an ASP.NET based grid control by Telerik that provides many advanced functions.

1135 questions
3
votes
2 answers

Telerik Export to Excel : Need to add an additional header containing HTML

I am using the below code for Exporting the Telerik Grid content to Excel. COde is as following: grdDisbursementDetail.Page.Response.ClearHeaders(); …
3
votes
1 answer

Export data Telerik grid

I'm using RadGrid from Telerik (RadGrid.Net2 (I know I should upgrade to a newer version, but that is not an option here..)). One of it's features is to export data to excel. With grid.MasterTableView.ExportToExcel(); an excel file is created with…
stian.net
  • 3,928
  • 4
  • 25
  • 38
3
votes
3 answers

Telerik RadGrid set BoundColumn to ReadOnly in Edit Mode

I have a Telerik RadGrid that has three bound columns and one button column. I would like to let the user edit the values in only one of the bound columns. The user can add a new record so i can't set the two bound column to read only. Is there…
Jefferson
  • 173
  • 2
  • 12
  • 32
3
votes
3 answers

Grid with too many columns in fixed width website

I am using Telerik's Radgrid for a website. Often the grid columns exceed the available width, and extend outside the main content area (fixed width). So what are my options for presenting very wide grids. horizontal scroll bars just look ugly on…
Midhat
  • 17,454
  • 22
  • 87
  • 114
3
votes
3 answers

Style for Caption in RADGrid

How can we set style for caption in radgrid? Following is how I am trying to set the caption text: radExport.MasterTableView.Caption = "Reports";
RMN
  • 754
  • 9
  • 25
  • 45
3
votes
1 answer

FindControl GridTemplateColumn Outside of radGrid Events

I have my own method and I am trying to findcontrol on a control inside the GridTemplateColumn, so I am doing it outside of the events for the radGrid. Is this possible and if so, how? Thanks!
user482375
3
votes
1 answer

Accessing all elements of a GridEditableItem in RadGrid

I am intercepting the update operation for a RadGrid. like this e.Canceled = true; GridEditableItem item = e.Item as GridEditableItem; Hashtable dictionary = new Hashtable(); item.ExtractValues(dictionary); This gives me the changed values in the…
Midhat
  • 17,454
  • 22
  • 87
  • 114
3
votes
2 answers

CheckBox in RadGrid and Sending data to Database

I want a checkbox in RADGRID. Following are detailed requirements: All the radgrid columns i am populating with AutoGenerateColumns="True" from stored procedure. I need an extra checkbox column. I don't have/need any field to bind checkbox during…
RMN
  • 754
  • 9
  • 25
  • 45
3
votes
5 answers

RadGrid - filter textboxs, any way to control their width dynamically?

I have a RadGrid with a filtercontrol on it. The grid fits the size of the window, but certain views have quite a few columns and when the columns get shrunk down, the filter controls don't resize to fit. Is there any way to set those filter…
AndySousa
  • 1,062
  • 2
  • 15
  • 30
3
votes
2 answers

Rad Grid prerender event Issue

Can anyone tell me the things happening in this section? Why is it making items invisible? protected void rgStateTax_PreRender( object sender, EventArgs e ) { if( rgStateTax.MasterTableView.IsItemInserted ) { foreach(…
peter
  • 8,158
  • 21
  • 66
  • 119
3
votes
2 answers

Problem with paging in telerik Radgrid when databinded from ServerSide

I have two radgrid , for the first radgrid i am binding the data from serverside , and for the second radgrid i am binding the data through sqldatasource from clientside. The radgrid2 for which i bind the data through clientside,pagination property…
mahesh
  • 3,067
  • 16
  • 69
  • 127
3
votes
1 answer

Telerik RadGrid opening an extra popup edit form when pressing "enter" from a popup form for inserting

I have a radgrid that uses the popup edit mode with a custom edit template. The edit form upon pressing the enter key will insert a new item into the grid. I go in and add an item. This successfully inserts. Then I go to add a second item: The…
ntn
3
votes
2 answers

Show loading image while radgrid load with data

I'm using radgrid in my asp.net application. In button click i'm binding the grid with data. But its takes some times to bind data. So I want to show the load image till finish databinding. How to show the loding image while radgrid loding with…
Ram
  • 913
  • 5
  • 17
  • 35
3
votes
2 answers

how to get a column value in radgrid on DeleteCommand event

Hi All I have a radgrid like this :
farnaz
  • 41
  • 1
  • 2
  • 4
3
votes
3 answers

Filtering radGrid while pressing Enter - Telerik

i am using telerik RadGrid to show a DataTable. I have enabled filtering option. there i am seeing some list of options like "Contains","Starts With","Ends With",.... i need to filter when i press enter from the filter text. Is there any option…
Michael
  • 31
  • 1
  • 2