It is a bit disappointing that Enum filtering is not supported. I would recommend you re-evaluate the need for this type of support given the fact that the Entity Framework now supports Enums (I think as of 4.1?) AND since the RadGrid supports binding against the Entity Data Source. I think you'll find that Enums are very popular when using the Entity Framework Code First approach. It would be SUPER useful if your development team could find a way to support this. It would make an already great control even greater!
Hi When using RadGrid with popup Edit forms, it would be great if we can have a property that allows users to position the edit form just above or below the row being edited (depending on available space). See attached file which contains three JS functions that we use to position our edit forms. We rely mainly on the '_radGridCenterPopUpToSelectedRow()' which positioned the edit form below the row being edited (or above if there is no space below) but this does not work right if the page has scrolled vertically or if we are in a child grid of an hierarchical grid. It would be great if this could be a standard property for the Edit forms so that we do not need to keep computing the position for the pop-up edit forms. Thanks S
Basically, improve the approach suggested in the following article to provide a more generic solution, applicable for multiple aggregate fields: http://www.telerik.com/help/aspnet-ajax/grid-aligning-items-in-group-header.html
Hello, If the RadGrid is set to RTL: RadGrid1.MasterTableView.Dir = Telerik.Web.UI.GridTableTextDirection.RTL When a user wants to resize a column, the LEFT border of the column should be resizable. When it is moved, the width of the column should expand or shirk, accordingly. However, in RadGrid the RIGHT border of the column is always resizable – also in right-to-left. This is very confusing and unnatural for RTL users. See video that shows the current behavior: http://youtu.be/mGpYNs0x5gc See another video that shows how it works nicely in Excel. I think it should work like this in RadGrid, too: http://youtu.be/GMO7tWzt-mw Would love to see this implemented. Thank you, Daniel.
I grouped my grid on two levels. Second level still contains many records. It would be nice to allow paging on second level
It seems the element somehow considmes the scrolling/touch action and the grid does not scroll unless you hit the gap where the custom element does not reach. A workaround is to enforce overflow: auto to the scrollable element of the grid. A sample is attached below. div.rgDataDiv { overflow: auto !important; }
I think it would be a great addition to the grid control if there was an attribute that you could apply to the columns called "SortNullsLast" or something along those lines. This attribute would modify the grid's sorting functionality and only apply the ascending or descending sort to non-null values. Currently when you sort ascending, null values are sorted to the top of the grid. This new attribute would allow the non-null values to show up at the top in ascending order. An example of why this would be useful is having a grid that tracks an optional requested completion date of a task. You would want to be able to sort the grid so that the earliest date shows first in the grid. Right now, any records that don't have this optional date would show first, which doesn't make sense.
Description:
If RadGrid has UseStaticHeaders enabled, different HTML Tables are rendered and instructing JAWS to read the tables one by one will also read the Header. It would say Header with "n" number of columns and one rows, since the table has only one row and that is containing the Column Names.
Goal:
It would be great, if the grid with Static Header could be made in a way that JAWS will only treat the grid as one Table instead of two separate tables.
Workaround and discussion:
In radgrid, when you are filtering the grid using EXCEL like filtering, you get a Listbox where you can enter a filter string, which then shows a filterlist of checkboxes that match that filter string. There is a checkall checkbox at the very top. If you select that, it selects all the filtered list checkboxes and checks them.
When you then click the filter button to apply the selection, the filter criteria is ignored, and no grid filtering occurs.
I did find a "fix" for this, but it is not useable.
The problem with this fix is that it works on the first applied filter, but if you the try to filter again, the Listbox takes a extremely long time to load the checkbox list, and so is not practical.
Is there a better solution? Has this even been identified as a bug which will be fixed?
We have to bind a Grid to a SQLDataSource with several columns that should be displayed and edited as a CheckBox column. We've seen in your manuals that a GridCheckBoxColumn can be binded to a datafield with 'True' or 'False', but what about the fields that contains numerics 1 or 0 ? (SQLDataSource does not have a True/False column, so, the GridCheckBoxColumn is useless) We've also seen a workarround with Templates, but when in edit mode, it is very tedious. In our opinion, it's a very common procedure to display numeric columns with Checkboxes. Do you plan to add this feature in new versions? Thank you in advance.
Currently only columns in first level of hierarchy trigger horizontal scroll bar when being expanded by width. The goal is when resizing columns deeper in the hierarchy to trigger scroll too. <ClientSettings AllowDragToGroup="true"> <Resizing AllowColumnResize="true" AllowResizeToFit="true" EnableRealTimeResize="true" ClipCellContentOnResize="false" ResizeGridOnColumnResize="false"/> <Scrolling AllowScroll="true" UseStaticHeaders="true"/> </ClientSettings>
While implement this demo http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/batchediting/defaultcs.aspx, when I was about to save changes I clicked "Add new record" instead "Save changes" and because of RequireFieldValidator in Unit Price I cant save changes. Now I am forced to add information to new record in order to save changes and not losing the rows I already added. I attached an image with the scenario.
I would like to see the RadGrid control have support for a global header and footer template row for the entire grid. The header or footer would be rendered within a row inserted at the top or bottom of the grid, with styling consistent with the grid's skin. It would actually be very similiar to CommandItemTemplate, but could be used with the default command rows and would apply to the very top and bottom of the grid, and not be part of the MasterTableView. It would simply be to anchor something to the top or bottom of the grid with a consistent look, feel, and width of the rest of the grid. <TELERIK:RadGrid Runat="server"> <HeaderTemplate> Whatever I want to put here would be placed in it's own row at the very top of the grid and it would be automatically styled consistent with the Grid's skin. I could put controls in here and they would bubble through the grid (and it's AJAX functionality, if anything is enabled). </HeaderTemplate> <MasterTableView ... /> <FooterTemplate> Same here, except it goes at the bottom of the grid. </FooterTemplate> </TELERIK:RadGrid> In the example image I attached, the bottom row with "Primary Service Completed" is not actually part of the grid, but we used some CSS to make it look like it was... but that particular CSS is fragile if we ever changed the global skin on the site or for the Grid in particular. That is what I might want to put in the FooterTemplate.
Hi, in Radgrid header context menu filter section would be nice the possibility to add field to filter and change the logical operator (AND / OR ). Best Regards