radgrid

Is it possible to add a Image to the control collection of the header of RadGrid

I would like to add and Image along with the HeaderText in RadGrid. I can able to do this in ItemBound event. But is there any possible ways to do the same in page prerender event? ...

datagrid sql data source join

I have a table called Leaves. Fields are, * LeaveID * PersonID * ActingPersonID In Person's table, I have, * PersonalID * EmployeeCode * PersonName Now, in the datagrid, I need to show, * PersonEmployeeCode * PersonName * ActingPersonEmployeeCode * ActingPersonName Now, I know how to write the SQL Join to get the data populated....

Does anyone know how to get the `InsertItem` of detail table of radgrid?

Does anyone know how to get the InsertItem of detail table of radgrid? I can get from master table using the following code. Radgrid1.MasterTableView.GetInsertItem(); But how can I get it from detailtable? ...

Accessing radgrid row through object data source

Hello all. I have a radgrid and within said radgrid, I have a templatecolumn that is a lovely drop down list: <telerik:GridTemplateColumn HeaderText="Feedback" UniqueName="Feedback"> <ItemTemplate> <asp:DropDownList ID="ddlFeedback" runat="server" AppendDataBoundItems="True" A...

Need to get data into template column from user control

I use Employee and EmpAdress tables. I have a Address.ascx user control which has one textbox in it. This usercontrol has EmpID property and uses this EmpId to get the addressdetails. I am populating the radgrid with the employee objectdatasource (has many columns but populating few columns). In the radgrid I am using a gridtemplatecolum...

Can radgrid maskedcolumn display masked data in standard view?

I have a masked radgrid column for a phone number on a bigint column. The mask appropriately masks the edit form. It does not mask the data in the standard grid view. I understand that this is the intended behavior... however I'd like it to mask the displayed data too. Any ideas? EDIT: That is to say, as a standard grid item, I'd lik...

RadGrid override CreateChildControls

I'm extending the tellerick RadGrid control to give it an optional CustomSearchControl. protected override void CreateChildControls() { this.Controls.Add(CustomSearchControl); base.CreateChildControls(); this.Controls.Add(CustomSearchControl); } It seems that base.CreateChildControls() must have a clear c...

RadGrid Per Page Sorting

I'm tying to make a radgrid that sorts items like a bank statement. By this I mean it has to follow a specific pattern. All the data is pulled in one linq statement and put into what is essentially a list. Each page must have an ascending sort (by date dd-mm-yy) from top to bottom. This means we should see : 26/09/10 | item 1 | €9...

How to determine which detail table raised Telerik radgrid NeedDataSource Event?

For a radgrid, in the GridNeedDataSource Event, the eventargs include: RebindReason IsFromDetailTable This useful for determining whether the rebinding is caused by Parent or Child grid. What if I have a 3-tier grid? Parent > Child > Grandchild This boolean parameter will only tell me whether or not the grid raising the event was the ...

Problem with LINQ Filters in Telerik RadGrid

Hi all. I have a problem using Telerik RadGrid. When I apply a filter on a data column, I use the filter expression as a Linq expression. So (server side) I parse it with Dynamic Linq (from MIcrosoft LINQ examples) in NeedDataSource handler. The problem is that when I specify "Start With" as a filter, I receive the following as "Linq ex...

how can i check and change the Text Of the DataBound column of My telerik RadGrid?

hi my dear friends: in my rad grid i have a boundColumn(system.string) that i want to change it's null value to another customize text... how can i check and change the Text Of the DataBound column of My telerik RadGrid? thanks for your future answer ...

Deferred loading of RadGrid and strange error in firefox

Hi all, I have some strange issues with loading of RadGrid. What I'm trying to accomplish is deferred loading user control from web service. This technique is explained on this link: http://encosia.com/2008/02/05/boost-aspnet-performance-with-deferred-content-loading In explorer and chrome works fine except, styling of a grid is not a...

Telerik RadGrid bound to web service without Linq

I want to bind a Telerik RadGrid to a web service without using Linq. In all examples I can find, the web service has to return a List(Of MyObject); I've tried this, and it works great. However, the table I'm binding to may at runtime have additional columns, or columns may have different data type, so I can't use a static MyObject class...

How to access the DataNavigateUrlFormatString in a gridhyperlinkcolumn on a telerik radgrid programatically

My question is, how do you access the DataNavigateUrlFormatString property in a gridhyperlinkcolumn on a telerik radgrid programatically? At the moment i can access the text displayed through the cells in the master table view like so, string filename = myRadGrid.MasterTableView.Items[e.Item.ItemIndex].Cells[12].Text; but on a gridh...

Exporting a filtered Grid data In Telerik RadGrid

When exporting a rad grid data if the user has it filtered in any way the grid should just export the filtered data not the entire dataset - Any idea how to achieve this? Regards - Hemant ...

Telerik RadGrid Footer Totals For Columns, but for filtered data

Hi, I have RadGrid filled with data, implemented with sorting, paging and filtering. On filtering I get filtered set of data show in grid. In footer I have totals(sums) for a few cost columns. Problem is that when I filter data, I want to setup sums to only show sum for filtered data, not shown data or whole collection. I can't find way...

How to make only single row selected in telerik radgrid detailtables?

Hello everyone, currenetly, I am using the telerik Radgrid control to build a grid. my grid have two levels ( mastertableview and detailtables). In detailtables, there is a gridclientselectcolumn to show a checkbox. What i want to do is to make only one row selected at each time. That means, when I select a row in a detail table, the o...

Loading RadGrid NestedView on demand without using SqlDataSource

Hello, I'm looking for an example on how to create a RadGrid NestedView template that loads the data when expanded. All the examples I see use a SqlDataSource, but I would prefer to avoid that since I'm not using it on the parent grid (using the NeedsDataSource event). This can't be that hard... I just can't get the databinding down. ...

persist row selection in telerik Rad gird inside rad window

Hello, I m using telerik Rad gird, inside Rad window and using the selected indexchange event i ahve to do some operation, but the problem is that, after row clicking, row selection is not persist. ...

persist row selection in telerik Rad gird inside rad window

Hello, I m using telerik Rad gird, inside Rad window and using the selected index change event i ahve to do some operation, but the problem is that, after row clicking, row selection is not persist. ...