Hi,
When form loads scroll bar missing as well as summary also missing but when i resize the form it appear and work appropriately.
I believe this is some visual glitch. Please provide me some solution for this.
I am attaching gif image which ca explain you my concern.
Check the below attached zip file for more reference.
Did you try Invalidate()?
protected override void OnLoad(EventArgs e) { base.OnLoad(e); this.Invalidate(); // refreshs form GridView.Invalidate(); // refreshs gridview }
Hi tar,
I have tried the above code as well as below one.
this.Refresh(); & gridview.Refresh(); but nothing works for me.
Please suggest me some other way.
Thanks
I appreciate the provided recording file. Using only the provided information, I can't determine why this is happening. However, you could try to visually refresh the control by using the following code:
this.radGridView1.MasterTemplate.Refresh();
Hello Dinko
Thanks for your reply, I have implemented your code but it seems t is not working.
Thanks once again for your response.