I created a RadGrid with a couple of fields for filtering and I can't seem to get the filtering to work. I can see it clearly posting back (the ajax spinny circle thing) after typing something in the filter box, however my results are always the same. I am using the following definition in the aspx file:
<telerik:RadGrid PageSize="4" ID...
I have a RadGrid that has a Loss Amount column which I would like to be able to sort. Currently it does sort, but only by string value. I have the column type as GridNumericColumn. Can someone point me in the right direction please? Thanks in advance.
Update:
Ok, here's my code. I am also formatting the column text to show the currency...
Hi,
I have a GridView (RadGrid) being bound with data using LINQ. In the LINQ query, I use DefaultIfEmpty because some records have empty values to a lookup table.
In the real SQL query generated by LINQ, we can see LEFT OUTER JOINs, so even if some data is not provided to reference the table, records are returned.
My problem is when ...
Hey guys,
I am using Telerik RadGridView control in my C# WinForms app.
I have user details showing up in the grid. I am trying to refresh data in my grid every x seconds. But no luck so far :(
Your help would prove a great favor to me :)
Here is what I have in my code-behind:
public Dashboard() {
InitializeComponent();
thi...
Is ajaxComplete able to handle any ajax requests invoked in page, for example asp.net ajax or is it only for ajax requests originating using jQuery. I tried to handle Telerik's RadGrid like this without success
$('#RadGrid1').ajaxComplete(function() {
});
...
I have a Rad Grid and I simply want the cursor to be a pointer on hover of every row. I've tried Css classes and it hasn't worked. I know there is a simple solution, i just don't know how to do it. Below is what i've tried
<style type="text/css">
.UseHand
{
cursor: pointer;
}
<telerik:RadGrid ID="RadGrid1" Skin="WB" runat="serv...
I have a RadGrid that has it's rows and columns being created programatically, and there is a RadAjaxManager that is set to update another Panel on SelectedIndexChange. The RadGrid also has scrolling enabled and multirowselect disabled. The RadGrid operates as supposed to, but as soon as you scroll it starts collecting selected items. I ...
I have a Radtreeview that sits inside a RadGrid. For some reason the expand/collapse buttons of the Treeview are not working. I can expand the Treeview initially, however the NodeExpand event never fires.(a postback does occur to the server, and I have several buttons on the treeview node that work.) Once the node has been expanded, the ...
I have a Telerik RadGrid that bound to a datasource object. They are configured to support custom paging, sorting. For paging, only the data of a page is retrieved from the database. Before sorting, it works fine. The select method of the datasource is like
public List<xxx> Select(string sortExpression, int maximumRows, int startRowInde...
Can't remember / driving me crazy - how to hide the upper-left-most cell/column of a Telerik WPF RadGrid (so all column headers are flush-left?) I know it's something ridiculously easy/ simply forgot.
...
where can i find all of the Command Names for a Rad Grid
examples
UpdateEdited
CancelAll
InitInsert
PerformInsert
DeleteSelected
RebindGrid
...
I'm new to Entity Framework and I got stuck in an issue while trying to bind a navigation property (foreign key reference) to a dropdownlist. I have Telerik RadGrid control which gets the data using a EntityDataSource control. Here is the model description:
Applications: AppId, AppName, ServerId
Servers: ServerId, ServerName
The Appli...
I was creating another usercontrol with Telerik's RadGrid and Calendar.
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<table class="style1">
<tr>
<td>From</td>
<td>To</td>
</tr>
<tr>
<td><asp:Calendar ID="Calendar1" runat="server" SelectionMode="Day"></asp:Ca...
I'm not sure if anyone else has had trouble with this. I'm trying to use a RAD Grid to create a 4-level hierarchy to display to the user. I followed the tutorial on this website, and couldn't get it to work. I know that there is data within the child select statements, but the second layer is always coming up empty. I've checked my s...
I was thinking if is it possible to do crud on telerik radgrid and the data were from a linq to entity.
I was using edmx, then I have set Radgrid's DataSource with data resulting from a linq query. Here it goes:
DatabaseModel.Entities entities = new DatabaseModel.Entities();
RadGrid1.DataSource = from courses in entities.Courses
...
Hi there,
I have asked this question on Telerik forums with no reply so I'm turing to you.
I have seen this topic come up before but without an answer so I thought I'd define the problem as simply as possible.
I have a LINQ command creating a query:
var gridData = from au in dc.aspnet_Users
join aur i...
I'm trying to add a custom filter to my RadGrid. I have a column, vendNum, which I want to allow users to filter on multiple vendNums with a comma-separated list. Basically, I want the same functionality as an "in" statement in SQL (where vendNum in (X,Y,Z)).
I followed the tutorial on this site and came up with the following code t...
we have the datasource as :
rgSubjects.DataSource = entity.Student_Subject_MM.Include("Subjects").
Where(p => p.StudentID == _currentStudent.StudentID
&& (p.Subject.SchoolYear == schoolyear || schoolyear == "0")
&& (p.Subject.Semester.Value == sem || sem == 0)
&& (p.Subject.SubjectCode.Contain...
Ok, so I'm trying to get my custom paging going on the Telerik RadGrid, but I'm still hitting a wall. (the first part of my question was answered here)
So I have implemented the suggestion
ALTER PROCEDURE [dbo].[bt_HealthMonitor_GetAll]
(
@StartRowIndex int,
@MaximumRows int
)
AS
SET NOCOUNT ON
Select
RowNum,
[ID...
I'm using Rad Grids and I use the built in Skins for appearance. However, I 'd like to add Gridlines for my Grid. Gridlines = "Both" does not seem to work.
<telerik:RadGrid ID="RadGridProviders" Width="100%" GridLines="Both" AllowPaging="true" Skin="WebBlue" runat="server" DataSourceID="SDSProvider" AutoGenerateColumns="false">
...