How can I style normal html tables (or ASP tables) like the rest of the RadGrid in my website?
I'd like to have a normal table to look like RadGrids, is there an easy way I can use the RadGrid styles (keeping theming in mind)? ...
I'd like to have a normal table to look like RadGrids, is there an easy way I can use the RadGrid styles (keeping theming in mind)? ...
Good day! I have a class names Sales: public class Sales : BaseDomain { public virtual string Name { get; set; } ICollection<ActivityCategory> categories = new List<ActivityCategory>(); } I bind this a List of items of this class to a RadGridView: grid.ItemSource = e.Result; where e.Result is a List. For column "Name" ...
Hello All, I wanted to ask what is the best practice to manage width of the radGrid. For my application most users are running 1280 x 1024 so I would be happy to set my overall grid width to 1100. However, depending on the form in use, I sometimes have horizantal scroll bars. To solve this, I have been playing with the width of the...
Hi, I have a telerik grid which is performing operations like searching,sorting,filtering etc. To make customers happy, we put this control in an ajax panel for seamless experience. Now, we added a new functionality to the grid where the customer can download the entire row information as a csv file. As the response is a file, ajax pa...
How to replace cell value with their description. This is my grid <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="None"> <HeaderContextMenu EnableAutoScroll="True"> </HeaderContextMenu> <MasterTableView AutoGenerateColumns="False" DataKeyNames="OrderID" DataSourceID="SqlDataSource1">...
I have a GridBoundColumn in my RadGrid that should accept Zip input and based on input auto populates the State and City fields on my form. I would like to wire this up in such a way as to call a webservice on the back end or maybe repost the form only when the GridBoundColumn is changed. How do I wire this up please? Thanks in Advance...
Hi , since Grid filter is case sensitive , i used the code below RadGrid1.GroupingSettings.CaseSensitive = false; Can weconfigure the same thing webconfig so that in the whole project case sensitiveness of radfilter will be false. ...
Hi, I need to embed 3 tables in my RadGrid, and at the same time take advantage of all Grids offer. A Multi-Table Grid with each of the 3 tables contained in a single column, side by side. Also Paging enabled to allow paging from one page to another of records. Anyone have any examples of this please? ...
I am currently highlighting a row in a radgrid using OnMouseOver. I would like to know if it is possible to use OnMouseOver to select the row rather than highlight it. Alternatively, I would like the highlighted row to remain highlighted if the radgrid loses focus, such as when a confirmation box pops up. Thanks in advance. ...
Hi there, I need to update some of the values of the item being edited in my code-behind based on some values in a custom Edit Form on our Rad Grid. Can I access the item (and update some values) from one of the Grid's event handlers? Currently I'm storing the values in temporary variables and then injecting the new values in the Object...
I have a radgrid controlling access to an application for users. There are two columns, a 'name' column and a checkbox 'access' column representing their current access permission. the checkboxes are populated from a database. I would like the to change the checkboxes to grant or deny access to the users I specify. Since there are alot o...
I have a RadGrid with a custom edit form (FormTemplate). The grid is in an UpdatePanel for asynchronous postbacks, as changing the selection in drop down lists and checkboxes needs to enable or disable other controls on the form. (Updating the controls synchronously is not acceptable to the user.) As part of the edit form, I have a File...
Hey everyone, So I've got the following column defined in my radgrid: <telerik:GridTemplateColumn DataField="Payment.Customer.FirstName" DataType="System.String" HeaderText="First Name" SortExpression="Payment.Customer.FirstName" UniqueName="FirstName"> <ItemTemplate> ...
Greetings, I've got a RadGrid populated with data from a DB. I've also got an image column which is to display an icon based on whether or not a specific boolean property (called IsDirty) of the object populating the row is true or false. If it's true, show the icon in the image column; if not, show nothing. The icon is the same for eve...
Hi, We recently bought Asp.net Ajax control. We are migrating to asp.net grid ti radgrid. In my grid I ma editing and updating my rows. When I am trying to implement that in radgrid I am getting too many errors. Can any one help me how to do that? In which command i need to write the code??? What i want is once i edit the radgrid, i j...
Hi, How do I handle sorting in RadGrid (or any other Grid) using EntityDataSource on computed columns ( in EF partial classes eg.: DisplayName { get { retrun this.Name + " " + this.LastName;}} ) ? ...
Details: I'm basically trying to implement the functionality of the example here (http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/editondblclick/defaultvb.aspx) on my own site, but instead of using a data source control located in the page markup (like in the example: SessionDataSource), I'm using a dataset that I get fro...
I've got a repeater I've bound to column names that are filtered, as they're applied (using sessions currently, I might change this to loop through the columns looking for filters now that I really know how the grid works). I've got a button next to each filtered column name that is to remove the filter from the RadGrid. <asp:R...
So I have the error mentioned in the title when I try to build my web site through the file menu. The code that causes this is below (JavaScript that appears in the body tag): if(editedRow != null) { var SundayLoc = $find("<%= FieldOpsScheduler_ctl00_ctl05_RCB_SunLocale.ClientID %>"); ...
I have a Telerik's RadGrid which has 2 columns like this: <Columns> <telerik:GridBoundColumn HeaderText="AirlineCode" UniqueName="AirlineCode" DataField="airlineCode" /> <telerik:GridBoundColumn HeaderText="FlightNumber " EditFormColumnIndex="1" DataField="flightNumber" /> ... ... ... more code, but unrelevant to the question her...