When, the end user, chose "Equals" for filter in Boolean column, the unchecked check box element is shown, but the records remains unfiltered. It should shows only records with value=false (unchecked).
Comment; We still don't have such property in the Templates. There should be AllowMultiColumnSorting proeprty at GridViewTemplate.
RadGridView's SelectAll method does not trigger SelectionChanged event.
Allow changing the header row height when RadGridView is set to ColumnGroupsViewDefinition.
There is a validation condition for a given cell, implemented through the CellValidating event. The end user enters a wrong value and hits tab key. Validation occurs and the value has prevented from confirming. However, if after that the user presses escape key, the old value is not returned as expected.
The exception is thrown if the CellBeginEdit event had been canceled and the form which contains the RadGridView has been closed
The should be able to operate with a threestate checkbox in RadGridView.
Export the Winforms' RadGridView to html file format.
Export the Winforms' RadGridView to cvs file format.
We have a RadGridView, which uses a custom object for data source and that object override Equals method from INotifyPropertyChanged interface. If Equals return true for records that actually aren't equal, than the RadGridView takes(displays) them as equal (with one and the same values), despite the fact that in underling data source they are still different.
The following works; GridGroupByExpression groupBy = new GridGroupByExpression(); groupBy.Expression = "[Status] format \"Current {0}: {1}\" Group By Status DESC"; this.fundsGrid.MasterGridViewTemplate.GroupByExpressions.Add(groupBy); The following doesnt work GridGroupByExpression groupBy = new GridGroupByExpression(); groupBy.Expression = "[Status] format \"Current {0}: {1}\" Group By Status desc"; this.fundsGrid.MasterGridViewTemplate.GroupByExpressions.Add(groupBy);
RowValidating does not fire when moving from child row to parent row.
When New row is at the bottom and it is current and you try to submit a new record, the events RowValidating and CurrentRowChanged are not fired.
CellValidating and RowValidating events should fire always when closing an editor.
While scrolling down a grid with HTMLView settings, the rows shrink in both height and width towards the upper left corrner of the grid.
If the first column in a flat grid is a GridViewDateTimeColumn and you try to edit it by pressing '1' key without any mouse interaction, you get InvalidCastException.
If there is not VerticalScrollbar in RadGridView, pressing PageUp/Down keys leads to unexpected behavior. To reproduce the issue just place a RadGridView in a Form and add a couple rows, but not enough to vertical scrollbar apear. Run the project and test repeated PageDown and PageUp key presses.
When you set the DecimalPlaces property of GridViewDecimalColumn, this setting is not reflected on the GridSpinEditor
When there is an HtmlView defined, and ComboBox column, the ComboBox element is out of the bounds of the grid's cell.
If you want to cancel CurrentRowChanging (e.Cancel=true), when you click on next row's check box column, it throws the event twice and the next rows' check box has been improperly checked.