Unplanned
Last Updated: 15 Feb 2023 12:54 by ADMIN
Clear filter operation tools longer than expected when a large number of items are used to filter the control.
Unplanned
Last Updated: 08 Feb 2023 14:42 by ADMIN
When the collection contains null values and an exception will be thrown when using the FilterViewCheckedDropDownCategoryElement category.
Unplanned
Last Updated: 15 Feb 2023 12:50 by ADMIN
Any changes to the DataSource of the AssociatedControl won't be reflected after setting it initially.
Unplanned
Last Updated: 30 Dec 2022 08:52 by ADMIN

Use the following code and press the arrow of the spin editor for the Price category in RadFilterView:

            DataTable dt = new DataTable();
            dt.Columns.Add("Id", typeof(int));
            dt.Columns.Add("Name", typeof(string));
            dt.Columns.Add("Price", typeof(decimal));
            for (int i = 0; i < 10; i++)
            {
                dt.Rows.Add(i,"Item"+i, null);
            }

            this.radGridView1.DataSource = dt;
            this.radGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
            this.radFilterView1.AssociatedControl = this.radGridView1;

The following error occurs: