Declined
Last Updated: 13 Nov 2015 15:32 by ADMIN
Created by: Antonio
Comments: 1
Category: Grid
Type: Feature Request
0
People keeps complaining that web grids are slower and more difficult to use than Excel.
We definitely need a radgrid control with excel-like editing.
Ideally we need the look-and-feel of the radspreadsheet, with the fixed columns of the radgrid, the events for updating a database, and maybe direct databinding to a database table.
What they want to see is Excel. Like the MS-Access UI, when they move (with keyboard) from row to row, they expect the database to get updated accordigly.
Completed
Last Updated: 28 Jun 2016 16:13 by Curtis
Please add the ability to show the 3-dot Filter icon available in the mobile render mode in the lightweight render mode as well.

We don't have room to show the filter textboxes/dropdowns in the column headers and our clients don't know to right mouse click on a header when the filter box isn't visible to get filter options.

Having the 3-dot filter icon there would be wonderful as guide and provide better usability so they know more options are available. 

Thanks.
Completed
Last Updated: 13 Nov 2015 15:36 by Robert
Completed
Last Updated: 12 Nov 2015 18:05 by Scott
Completed
Last Updated: 02 Nov 2015 12:04 by Mostafa
Completed
Last Updated: 31 May 2021 15:42 by ADMIN
Created by: Pat
Comments: 1
Category: Grid
Type: Feature Request
0
Referring to: http://www.telerik.com/forums/dynamically-populate-databind-batchedit-radcombobox. 

Love the batch-edit, but just missing one major showstopper for me - being able to dynamically populate information in the edit controls for each row. A simplified example (using NFL and DivisionIDs) is explained in the above link.

Thanks for the consideration!

- Pat
Completed
Last Updated: 20 Jun 2022 14:42 by ADMIN
Unplanned
Last Updated: 13 Nov 2015 11:49 by Imported User
The GridCheckBoxColumn cannot handle null values in a bit field. 

I would like to be able to bind the checkboxcolumn to a bit field that allows nulls. The checkbox should be checked when the value is true, unchecked when it is false, and filled when it is null.

The current solution is to use the RadButton inside a GridTemplateColumn and add custom togglestates, but this solution is not documented and it is very time intensive for something that should be quick and simple. It requires a lot of coding to update or insert a record.
Completed
Last Updated: 11 Sep 2015 07:18 by ADMIN
ADMIN
Created by: Angel Petrov
Comments: 0
Category: Grid
Type: Bug Report
1

			
Completed
Last Updated: 08 Sep 2015 10:13 by ADMIN
For the time being you can add the following JavaScript workaround at the end of the form:

<script>
            Telerik.Web.UI.RadGrid.prototype.repaint = function () {
                if (!this.canRepaint()) {
                    if (typeof (this.get_element()) != "undefined") {
                        this.add_parentShown(this.get_element());
                    }
                    return;
                }
                else {
                    this._clearParentShowHandlers();
                }

                if (!this._scrolling && this.GridDataDiv) {
                    this._scrolling = $find(this.get_id())._scrolling;
                }

                if (Telerik.Web.UI.GridScrolling && this._scrolling) {
                    if (this._scrolling._shouldInitializeLayoutAndScroll) {
                        this._scrolling._shouldInitializeLayoutAndScroll = false;
                        this._scrolling._initializeDimensions();
                        this._scrolling._initializeScroll();
                    }
                    else {
                        this._scrolling.onWindowResize();
                    }
                }
                else {
                    if (this._repaintWidthFlag)
                        this.get_element().style.width = "";

                    var masterTableViewWidth = 0;
                    if (!!this._masterClientID && this.get_masterTableView() != null) {
                        masterTableViewWidth = this.get_masterTableView().get_element().offsetWidth;
                    }
                    if (this.get_element().offsetWidth < masterTableViewWidth) {
                        this.get_element().style.width = masterTableViewWidth + "px";
                        this._repaintWidthFlag = true;
                    }
                }
                if (this._masterClientID && this.get_masterTableView() && this.get_masterTableView()._virtualization) {
                    this.get_masterTableView()._virtualization.repaint();
                }
            };
        </script>
Unplanned
Last Updated: 27 May 2021 18:28 by ADMIN
Created by: 小章
Comments: 0
Category: Grid
Type: Feature Request
2
Because linq to entities no support DateTime.Parse() , So can you DateTime.Parse() to DateTime method

http://www.telerik.com/forums/how-override-filter-pattern-from-radgrid
Completed
Last Updated: 15 Sep 2015 14:07 by ADMIN
Completed
Last Updated: 20 Sep 2016 06:53 by ADMIN
Completed
Last Updated: 11 Jun 2021 14:20 by ADMIN
Hi,
i'm Maurizio and i would suggest a new feature for your RadGrid for Asp.Net.

How in the title, i have write a jquery code that resize the height for insert, edit and filter mobile form.

For do this, it is necessary configure the OnGridCreated client evento of Grid, set to Mobile the render mode property and into OnGridCreated event handler function insert the code that you found on file 'RadGridEventsManager.js' into zip attachment.

I hope that is useful.
Unplanned
Last Updated: 04 Apr 2018 10:10 by ADMIN
RadGrid 508 compliance request for hierarchical grid.

RF-5

Complex Tables are Missing ID or Headers Attributes

Data tables have multiple logical levels of row or column headers and lack the necessary coding associating the data cells with their respective headers. This issue is a violation of 1194.22(h) in Section 508 and 1.3.1 in WCAG 2.0.

Add id= and headers= attributes to all cells to correctly associate data cells with their respective row and column headers. For further assistance see http://www.hhs.gov/web/policies/webstandards/htmltable.html  and http://webaim.org/techniques/tables/data.
Completed
Last Updated: 25 Nov 2015 12:32 by ADMIN
Created by: Hennie
Comments: 1
Category: Grid
Type: Bug Report
0
Hi Guys,

When editing a grid line on the second page on a child grid detail page the edit form selects the incorrect record to update.  It works fine if you don't use the paging on the on the child..

http://demos.telerik.com/aspnet-ajax/grid/examples/data-editing/insert-update-delete-hierarchy/defaultvb.aspx


Thanks
Hennie
Declined
Last Updated: 13 Aug 2015 14:17 by ADMIN
Created by: E
Comments: 1
Category: Grid
Type: Feature Request
0
Add Visualization support for client-side binding on the radgrid.