Declined
Last Updated: 19 Feb 2015 15:13 by ADMIN
Created by: Zinoviy
Comments: 1
Category: Grid
Type: Bug Report
0
In HeaderContextMenu was made a typo in item value. TopGroupSeparator is typed as TopGroupSeperator. I've wasted 10 minutes to find out why JS code is not working.
Completed
Last Updated: 05 Feb 2015 09:42 by ADMIN
Created by: Daniel
Comments: 1
Category: Grid
Type: Feature Request
1
Hello,

Our project requirement is that information in RadGrid will be exported to PDF in RTL language. 
Please add this feature - it’s very important for our project!!

Thanks,
Daniel.
.Net Programmer as ISR Corp
Completed
Last Updated: 04 Feb 2015 08:20 by ADMIN
ADMIN
Created by: Viktor Tachev
Comments: 0
Category: Grid
Type: Feature Request
4

			
Declined
Last Updated: 21 Jan 2015 16:43 by Imported User
Created by: Imported User
Comments: 2
Category: Grid
Type: Bug Report
0
I need to export data from grid without actually displaying the grid.  When I drop grid on a aspx form, set datasource with stored  procedure, one parameter linked to a drop box selected value, set some properties like export all pages, only data and then fire export to excel if I have grid visible property set to true it generates excel file with field names as headers. If I have grid visible property set to false excel file still generated but no field names added as column headers. Is it a correct behavior for the grid? I use 2013 Q3 version of Ajax .Net controls, VS2010, IE 9, Chrome.  THanks!
Declined
Last Updated: 20 Jan 2015 16:09 by ADMIN
Using Web.UI v2011.1.315.35
How can I count only non-blank items in the group

Screenshots attached using the built-in and custom aggregates, also the custom-aggregation event handler code attached.
Declined
Last Updated: 20 Jan 2015 15:47 by ADMIN
While filtering in Radgrid column and using special character "%" it is not searching using "%", simply searching by other text.

Suppose we are filtering using "30%", but the results are shown as it is only 30. 
While debugging I found out that the used sql query becomes like following

like '%30%%'

In this the percentage symbol just after 30 is the symbol passed from UI but query considers as if we are looking for 30.
Declined
Last Updated: 20 Jan 2015 15:35 by ADMIN
Created by: Brett
Comments: 1
Category: Grid
Type: Bug Report
0
1.  create a rad grid with clientside binding and a clientdeletecolumn.  clientdelete column is buttontype=linkbutton and the linkbutton has a class for a background image
2.  set allowpaging="false" but don't set a page size
3.  populate grid so that it has 10 records
4.  all client delete buttons are visible
5.  add more records so that there are > 10 records
6.  records from 11>n will not show the clientdeletecolumn
7.  now, up the page size to something greater than your record count
8.  problem fixed

on viewing source you can see that the rgNoRecords tr is inserted after record 10 (default page size), which seems to affect the rendering below. the actual links for the client side delete columns are not rendered
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.
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: 23 Dec 2014 09:41 by ADMIN
Completed
Last Updated: 10 Dec 2014 08:54 by ADMIN
Declined
Last Updated: 09 Dec 2014 14:37 by ITDeveloper
Created by: F3M
Comments: 2
Category: Grid
Type: Feature Request
3
Having a RadGrid in batch mode with Master and Details tables, when you add a new master record, you are not able to add a new detail record until you save the master record. 
This feature should be built in the RadGrid.
Completed
Last Updated: 03 Dec 2014 16:12 by Orlando
Completed
Last Updated: 03 Dec 2014 13:57 by ADMIN
You can use the following temporary workaround in order to avoid the problem:
1. Attach OnGridCreated event handler:
    ...
    <ClientSettings>
         <ClientEvents OnGridCreated="onGridCreated" />
    </ClientSettings>
    ...

2. In the event handler configure the group header according to the number of visible columns in the grid:
          function onGridCreated(sender, args) {
              if ($telerik.isIE7) {
                  var visibleCount = sender.get_masterTableView()._getVisibleColumnsCount();
                  $telerik.$(".rgGroupHeader .rgGroupCol + td", sender.get_element()).attr("colspan", visibleCount);
              }
          }