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: 29 Jul 2016 13:35 by ADMIN
Created by: Rali
Comments: 1
Category: Grid
Type: Feature Request
0
You have very useful property - EnableTimeIndependentFiltering for GridDateTimeColumn. But I need to use ItemTemplate and EditItemTemplate and this future missing in GridTemplateColumn. I try to use FilterTemplate with RadDatePicker, but then I have only "equal to" option for filtering. I don't want this. So my suggestion to you is to develop EnableTimeIndependentFiltering for the cases when user have to use GridTemplateColumn with DataType=System.DateTime.
Declined
Last Updated: 19 Jan 2015 15:53 by ADMIN
Created by: David
Comments: 1
Category: Grid
Type: Bug Report
0
I am using the following grid:
   <telerik:RadGrid style="overflow: hidden" CssClass="dm-Grid" ID="gridView" runat="server" AllowPaging="false" PageSize="25" Skin="TylerSilver" EnableEmbeddedSkins="false" EnableViewState="true"
            ExportSettings-ExportOnlyData="true" ExportSettings-IgnorePaging="true" AutoGenerateColumns="false" SortingSettings-SortedBackColor="#F0F0F0" EnableAlternatingRowColor="true"
            EnableAjaxSkinRendering="true" AllowSorting="true" ShowGroupPanel="false" GroupPanel-Enabled="false"
            ClientIdMode="AutoId" AllowFilteringByColumn="true" onneeddatasource="gridView_NeedDataSource" Onitemcreated="gridView_ItemCreated" onitemdatabound="gridView_ItemDataBound">
            <clientsettings>
        <clientevents onrowselected="RowSelected" onrowdeselected="RowSelected" oncolumnclick="OnColumnClick" OnColumnSwapped="ColumnSwapped" OnGridCreated="OnGridCreated"/>
    </clientsettings>
        </telerik:RadGrid>

Columns are dynamic, created in code-behind to match configurable datasets, via gridView.Columns.Add.  Each column has UniqueName, SortExpression, and HeaderText properties set - first two to the field name, last to plain-English version of the field name with spaces, etc.  Data binding is via a data table created from search results:

 gridView.DataSource = allDocumentsTable;

and using the following JS to activate the header cell context menus:

 function ShowColumnHeaderMenu(ev, index) {
            var grid = $find("<%=gridView.ClientID %>");
            var columns = grid.get_masterTableView().get_columns();
            columns[index - 1].showHeaderMenu(ev, 5, 5);
        }

I'm able to group columns using the menu but the "ungroup" command in the menu does not work.  If I turn on the grouping panel as a test (we do not want this UI style in production code), I can ungroup columns using the panel, but that does not change the behavour of the ungroup command in the header menu; it still does not work.

I've tried this with the Q2 2014 release and the problem is reproducible in that version.
Declined
Last Updated: 19 Jan 2015 16:25 by ADMIN
Vertical Column Headers using rgRotateHeader seem to be a different, less readable, font than the regular horizontal column headers.  Please see attachment.  All those column headers are set to the same font.  To my eye, the rotated headers look quite poor.
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 24 Jun 2015 10:38 by Rashmi
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 09 Dec 2015 14:09 by Gal
Add RadGrid Support per column/per grid for timezone like the RadScheduler 
Same with the  RadDateTimePicker, RadDatePicker and Calendar.
Won't Fix
Last Updated: 20 Jun 2022 14:40 by ADMIN
Completed
Last Updated: 24 Sep 2014 07:07 by ADMIN
ADMIN
Created by: Kostadin
Comments: 2
Category: Grid
Type: Bug Report
0

			
Declined
Last Updated: 13 May 2022 17:00 by ADMIN
Declined
Last Updated: 03 Nov 2014 13:03 by Elena
RadGrid cannot edit in IE8 under 2014Q2
javascript thows errors:
URI: http://localhost/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3azh-CN%3a8f393b2b-3315....

To fix the upper problem, we appyied 2014Q2SP1, however, in IE8, javascript thows new errors:
“sys is undefined” 
and the RadGrid does not display in web. But this is ok in debuging mode.
Declined
Last Updated: 16 Jul 2015 08:56 by ADMIN
Created by: Jared
Comments: 2
Category: Grid
Type: Feature Request
4
The title says it all. Right now there's only a check all option.

In the out of the box Grid CheckList filter the only way to clear all items for a checklist filter once filter items have been selected is to:

1) Uncheck each one individually
2) Click "Check All" to check all, then click "Check All" again to uncheck all.

It would be great to just have a clear all/clear selection button in the filter list.
Completed
Last Updated: 09 Jun 2015 08:48 by yogaraj
The functionalities listed below are officially not supported with multicolumn headers: 
•Frozen Columns;
•Show/Hide on the client;

Please provide the solution for these known issues in next release

Won't Fix
Last Updated: 02 Jul 2019 07:21 by ADMIN
When trying to batch edit cell values of the Grid via e.g., RadEditor (GridHTMLEditorColumn or RadEditor in EditItemTemplate of GridTemplateColumn) the cell value always result to a plain text.