Declined
Last Updated: 25 Sep 2015 11:40 by ADMIN
Created by: Balaji
Comments: 1
Category: Grid
Type: Feature Request
1
When the grid has no paging and all the groups are collapsed its good to have a paging defined within grouping to display all the groups in the same page as well can browse through the items within the group with paging defined.
Completed
Last Updated: 25 Sep 2015 10:53 by Valli
As per the current implementation of the RadGrid control, if we set the CurrentFilterFunction, that will be used for that column and even with no value, the same filter function will be used (specified in the CurrentFilterFunction).

This is not user friendly and one should expect that "NoFilter" will be invoked when there is no value.

There is no possibility for invoking the "NoFilter" command when the following properties are set:
ShowFilterIcon = False and AutoPostBackOnFilter = True

please refer the following link for more information:
http://www.telerik.com/forums/filter-not-resetting-if-filtervalue-is-empty-in-client-side-filtering
Declined
Last Updated: 25 Sep 2015 10:51 by ADMIN
Created by: MG-Hakan
Comments: 1
Category: Grid
Type: Feature Request
0
Ability to add custom buttons to the command item collection. 

Declined
Last Updated: 25 Sep 2015 10:30 by ADMIN
Created by: Albert Shenker
Comments: 1
Category: Grid
Type: Feature Request
0
I brought this to Telerik's attention 4 years ago. The grid Pager is a poor location for the built-in loading image because it is not clearly visible in a number of scenarios. First off, it is small and tucked in the corner, which makes it hard to see. But there are other scenarios where it is completely invisible. 

If the grid height is fixed and larger than the screen size, the entire pager is not visible unless the user scrolls the window. So, the loading image will not be visible when users take actions like sorting/editing/deleting/filtering which tend to occur towards the top of the grid.

And, if the grid has Paging disabled, then the pager and built-in loading image will NEVER be visible.

I understand that one can add a custom loading image which would work better. And if asked, Telerik can provide a couple dozen lines of custom javascript which will move the loading image for a grid. But If your project has a large number of grids, adding code to each is untenable. And at the end of the day, this should be a built-in feature of Rad Grid, not something that needs to be hacked to work appropriately.

RadWindow used to have a tiny loading image in the status bar which was invisible in a number of scenarios, most notably when the status bar was disabled. The Rad Window team saw fit to move the loading image to the center of the Rad Window where it belonged. This was years ago. For some reason, the Rad Grid team has not seen fit to do the same. Why is the RadWindow team aware of and responsive to concerns about the usability of their control and the Rad Grid team is not?
Declined
Last Updated: 25 Sep 2015 10:28 by Anton
Created by: Anton
Comments: 0
Category: Grid
Type: Feature Request
0
Is any option to use RadGrid in disconnected mode. So when user lost connection with internet(intranet), he can continue to work with grid - add new record, edit records. In html 5 appear such technologies like HTML5 Storage,Web Sql. Is it any way to interact with them?
Completed
Last Updated: 16 Sep 2015 09:51 by ADMIN
Completed
Last Updated: 15 Sep 2015 14:07 by ADMIN
Completed
Last Updated: 12 Sep 2015 10:34 by mqsash
Created by: mqsash
Comments: 0
Category: Grid
Type: Feature Request
13
When doing batch edits on a grid if you delete a row, the row is no longer visible in the grid but it is not actually deleted until users click the 'Save' button. This has led to some confusion for our users who delete the rows then navigate off the page w/o pressing save. They think they successfully deleted the rows but when they return to the grid the rows are still present.

We have added logic when navigating away from the page that checks and prompts users if there are unsaved batch edit changes, but in case of deleted rows, when they look at the grid, there is no indication about the deleted rows so they are unaware that the rows were not actually deleted.

We like the idea of not deleting the rows until the user presses the save button, but maybe the delete action should not remove the row from the grid and instead simply strike it out, or put a 'marked for deletion' flag or do something visual to keep the row on the grid but make it obvious that it has been marked for deletion. This way users will not be confused and will know that they must click the Save for the change to take effect.
Completed
Last Updated: 11 Sep 2015 09:39 by ADMIN
Created by: Michael
Comments: 5
Category: Grid
Type: Feature Request
14
If the user's browser supports html5 local storage, I'd like for the RadGrid to be able to save/load its settings from there for things like page size, column order, sorting, etc.  Other controls may be able to do this as well.
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: 09 Sep 2015 13:54 by ADMIN
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>
Declined
Last Updated: 17 Aug 2015 05:56 by Cameron
Created by: Cameron
Comments: 4
Category: Grid
Type: Feature Request
1
For RadGrid (and other similar controls) it would be nice to be able to simply add AutoHeight="true" to the elements markup to make the grid calculate the browser height and adjust it's own height (including the scrollable DataDiv inside it) automatically rather than having to resort to custom javascript to achieve the same thing.

ie: activate AutoHeight on RadGrid and simply set the distance from the bottom of the browser window to allow for footers, etc. and have that distance maintained even when the browser is resized.

Height and ScrollHeight can only use explicit values - not percentages - which is kind of useless if you want the grid to occupy 100% of the available browser height across different devices. http://www.telerik.com/help/aspnet-ajax/grid-height-vs-scrollheight.html

Won't Fix
Last Updated: 14 Aug 2015 07:32 by ADMIN
Completed
Last Updated: 13 Aug 2015 15:20 by Adam
Created by: Adam
Comments: 0
Category: Grid
Type: Bug Report
1
1. Add row to grid.
2. Delete the exact same row.
3. Press save changes button.
- Client side error, as seen http://prntscr.com/7qf6zr