Completed
Last Updated: 07 Nov 2019 14:06 by ADMIN
Release R1 2020 (LIB 2019.3.1111)
n/a
Created on: 03 Oct 2019 10:33
Category: Spreadsheet
Type: Bug Report
0
RadSpreadsheet: Resizing is very slow and doesn't produce correct layout

Add a RadSpreadsheet on the form and try resizing it at design time. You will notice that the control is resized after a considerable delay.

If you Dock the control to Fill and try resizing the form at run you will notice that the layout is incorrect. The attached gif file illustrates the obtained behavior.

Workaround: update the layout after resizing:

        public RadForm1()
        {
            InitializeComponent();
            this.radSpreadsheet1.SizeChanged+=radSpreadsheet1_SizeChanged;
        }

        private void radSpreadsheet1_SizeChanged(object sender, EventArgs e)
        {
            this.radSpreadsheet1.SpreadsheetElement.InvalidateMeasure(true);
            this.radSpreadsheet1.SpreadsheetElement.UpdateLayout();
        }

4 comments
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 07 Oct 2019 10:11
Hello, Junsoo,    

I am sorry to hear that you are experiencing any further difficulties with RadSpreadsheet. Feel free to submit a separate support ticket for every new case that you have and provide additional information how to replicate the undesired behavior. Thus, our support staff will gladly assist you.

If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
n/a
Posted on: 04 Oct 2019 14:29

Dear Dess,

 

Thanks. I do have two other issues and one is more serious(it throws Keys not found exception with UI interactions). We're seeking now for reproduction condition. It is a separate issue so I'll open a new ticket within a few days

ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 04 Oct 2019 13:57
Hello, Junsoo,    

I am glad that the suggested solution is suitable for your case. Note that we take very seriously performance problems and we will try to include this issue in the planning for the future release. However, I can't give an exact time frame when the performance will be improved. Make sure that you follow this item because thus you will be notified for any status changes.

Should you have further questions please let me know.

 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
n/a
Posted on: 03 Oct 2019 11:22

Thanks. It solves the problem. Still, I believe the users will almost always need this feature and should be asked to opt out from this, instead of opt in.

Thank you again for your fast reply.