Completed
Last Updated: 09 Jan 2013 06:09 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
8
On the form load, the grid is loaded with three parts. Upon refresh, the buttons call a method which generates the same data table but with some additional parts - to simulate a data refresh.

Button 1 - Refresh Data
- This button calls a method that operates the same as detailed initially in the ticket; it utilizes the BeginUpdate/EndUpdate methods around the updating of the grid. This replicates the scenario I initially described where message boxes are fired stating "Column 'xxx' does not belong to table 'fileSystem'.".

Button 2 - Refresh Data 2
- This button calls a method that is modified as suggested - the BeginUpdate/EndUpdate methods have been removed and the DataSource is set directly.

Button 3 - Clear Data
- This button is meant to simply clear the data from the grid. It only attempts to set the DataSource property to Nothing.
Completed
Last Updated: 09 Jan 2013 03:47 by ADMIN
To reproduce:
- Add a grid to a form and open the property builder
- Add couple columns and group by some of the columns
- Press ok -> the grid is grouped
- Open the Property Builder again, click the X button of the group to remove it and click the OK button of the Property Builder -> the group is not removed.
Completed
Last Updated: 09 Jan 2013 03:33 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
2
1) When the grid first loads, the top-left most cell is automatically selected. Before clicking anywhere within the grid view, if you hold SHIFT and click the cell to the right of the selected, the following exception is thrown.
2) You can get around the above exception by clicking a different cell in the grid view before performing a SHIFT select or CTRL+C operation is performed against the grid view. If you select a different cell, and then perform a SHIFT selection to a cell in a different column, you will experience the "An entry with the same key already exists." exception
Completed
Last Updated: 04 Jan 2013 09:09 by ADMIN
Work Around:
1. Create custom text box editor.

        public class MyTextBoxEditor : RadTextBoxEditor
        {
            private bool isValueChanging = false;
            private int selectionStart = -1;

            public MyTextBoxEditor()
         
Completed
Last Updated: 02 Jan 2013 03:08 by ADMIN
Steps to reproduce:
1. Use the RadGridView Smart Tag to set its data source 
2. Press "Add Project DataSource"
3. Select "Object"
4. Drill down and select the class you created. (see below)
5. Select the New Data Source
6. Run the project 

Code to reproduce:

public class TestClass
{
public enum Month { January, Febuary, March, April, May, June, July, August, September, October, November, December }
public Month TestMonth {get; set;}
public String TestMessage {get; set;}
public TestClass(Month month, String message)
{
TestMonth = month; TestMessage = message; }
}

Workaround:
Use BindingList instead System.Windows.Forms.BindingSource.
Completed
Last Updated: 28 Dec 2012 09:10 by ADMIN
1. Create a new project and add RadGridView.
2. Bind a hierarchy.
3. Set MultiSelect property to true.
4. Replace default GridViewHierarchyRowInfo class with a custom one and override its SetBooleanProperty method.
5. Change child rows IsSelected property when parent row IsSelected property changes.
6. Run the project and try to select rows with the mouse.
Completed
Last Updated: 27 Dec 2012 07:24 by ADMIN
1. Create a new project with RadGridView.
2. Call Rows.Clear method.
3. Add some rows.
4. Run the project and you will see that the scrollbar maximum is wrong.
Completed
Last Updated: 24 Dec 2012 07:00 by ADMIN
The setup of ExpressionFormattingObject for inner GridViewTemplate not apply the conditional formatting to children rows
Completed
Last Updated: 21 Dec 2012 06:25 by ADMIN
Run the enclosed application and select the funnel icon in most right column "AKTIV" and select menu item "No filter". The application crashes. If you do the same using checkbox in filter cell, everything works fine.
Completed
Last Updated: 20 Dec 2012 06:54 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: GridView
Type: Feature Request
2
Allow hiding the SummaryRowItems in RadGridView's Groups
Completed
Last Updated: 20 Dec 2012 02:58 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: GridView
Type: Bug Report
3
FormatException is raised when a user attempts to filter RadGridView's combobox column
Completed
Last Updated: 18 Dec 2012 08:51 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
2
The used RadGridView BindingSource is bind to another instance of BindingSource in this case
Completed
Last Updated: 15 Dec 2012 06:40 by ADMIN
1. Create a new project with RadGridView and add a button.
2. Run the project.
3. Click on a cell and start to edit.
4. Click on the button, it will not receive the click.
Completed
Last Updated: 13 Dec 2012 03:41 by ADMIN
Wrong column name escaping in filter expression when the special symbols is used in the name like: "_x0000_", "_x0032_0", "_x0032_0_x0000_"  in the bound data schema
Completed
Last Updated: 06 Dec 2012 04:52 by ADMIN
Currently when exporting a grid if a cell value is null it is exported as an empty cell. The NullValue property of the cell column should be respected in this case.
Completed
Last Updated: 04 Dec 2012 05:39 by ADMIN
Currently developers have access to the main table element and to the individual cells. There should be a way for developers to access the row elements.
Completed
Last Updated: 23 Nov 2012 08:17 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: GridView
Type: Bug Report
2
RadGridView cannot display any data when bound to a List<IObject> filled with different implementations of the interface.
Completed
Last Updated: 12 Nov 2012 05:02 by ADMIN
To reproduce:
- create and populate a grid
- attempt to load invalid XML file (it can be empty as well) in a try/catch block
=> the grid remains in an invalid state

WORKAROUND:
        void radButton1_Click(object sender, EventArgs e)
        {
          
Completed
Last Updated: 07 Nov 2012 05:53 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
0
ADD. RadGridView - add a Tag property to the columns
Completed
Last Updated: 05 Nov 2012 07:31 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
1
- Add a row called "Telerik.Hello", filter for contains "Telerik" - no rows displayed
- Add some rows some of which empty, filter does not contain "some string", the empty rows are removed, while they should remain