Completed
Last Updated: 20 Sep 2016 06:44 by ADMIN
Completed
Last Updated: 17 Oct 2014 13:14 by Jerry
Completed
Last Updated: 27 Jan 2016 09:45 by ADMIN
Created by: Combinations
Comments: 2
Category: Grid
Type: Feature Request
3
When using the client-side resizeToFit() method of the RadGrid to automatically adjust a column's width it seems to cache the value (the computed width). If i alter on add contents to a column's header and then re-run resizeToFit() the column doesn't fit to the new contents.
I would like an option to reset the cache, maybe with an optional parameter to the resizeToFit() method.
Completed
Last Updated: 16 Apr 2014 14:51 by ADMIN
Completed
Last Updated: 20 Sep 2016 06:43 by ADMIN
Completed
Last Updated: 20 Apr 2022 15:37 by ADMIN
It would be nice if you provided the same level of documentation on server side programming as you do on client side programming. Specifically I suggest you include some documentation on finding and manipulating controls on the itemdatabound event. Currently the only source for this information is in your forums and most of it consists of try this, if that doesn't work than try that. This is very frustrating because server side programming on RadGrid is substantially different than in Microsoft Grid Control.
Completed
Last Updated: 03 Jun 2015 05:43 by ADMIN
Having Paging enabled, the Column Aggregates should be calculated based on the data from all of the group's items, even if the group is spread over several pages.

Currently, only the data from the visible items on the current page are calculated. 
Completed
Last Updated: 02 Oct 2014 13:44 by ADMIN
Completed
Last Updated: 21 Jun 2022 22:04 by ADMIN
The selector area of the dragging to select automatically goes all the way to the left; could that be changed so that the area shows up only from where the user clicked to where the cursor goes, like Windows Explorer? (see attached image)
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
ADMIN
Created by: Konstantin Dikov
Comments: 0
Category: Grid
Type: Feature Request
0

			
Completed
Last Updated: 20 Sep 2016 06:43 by ADMIN
Completed
Last Updated: 20 Sep 2016 06:40 by ADMIN
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);
              }
          }
Completed
Last Updated: 23 Sep 2013 08:08 by Kartik
Completed
Last Updated: 08 Jun 2015 13:53 by ADMIN
ADMIN
Created by: Konstantin Dikov
Comments: 0
Category: Grid
Type: Feature Request
5
Expose the MinValue and MaxValue properties from the GridNumericColumn RadNumericTextBox editor control, directly to the GridNumericColumn.