This is a migrated thread and some comments may be shown as answers.

Grid Row Overflow in Safari Browser

4 Answers 87 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Vargis
Top achievements
Rank 2
Vargis asked on 11 Mar 2014, 12:01 PM
Hi All,

I have an issue in Safari Browser on Widows 7 OS.

Rad Grid rows are overflowing the fixed height when scroll amount is very large.
Here I had attached the screenshot of small scroll and large.

4 Answers, 1 is accepted

Sort by
0
Vargis
Top achievements
Rank 2
answered on 12 Mar 2014, 09:27 AM
Please give a solution for this issue.
You can see it is occuring only when huge data is populated (means large no of rows)
0
Venelin
Telerik team
answered on 14 Mar 2014, 07:07 AM
Hello Vargis,

In order to resolve the issue we would need a little bit more information.

1. Are there any javascript errors listed in browser's console while you observe the wrong behavior? This is very essential for the proper work of RadGrid. If you find any errors they should be resolved.

2. Is this happening in all browsers?

3. Is this happens initially when grid loads or after performing some operations?

4. If it's possible for you, please provide some code that we can examine locally.

Regards,
Venelin
Telerik
 

DevCraft Q1'14 is here! Watch the online conference to see how this release solves your top-5 .NET challenges. Watch on demand now.

 
0
Vargis
Top achievements
Rank 2
answered on 14 Mar 2014, 11:52 AM
2.Actually this issue is only in Safari.
3.Not in Grid load please read my content ...when a small amount of data is populated inside the grid it looks fine but if we filter a 2 to 6 months there will be huge datas and it will overflow a bit over the intial height.
4.Not possible now
0
Venelin
Telerik team
answered on 19 Mar 2014, 07:41 AM
Hello Vargis,

Did you omit to add the answer of the first question? It is the most important because client-side functionality (like scrolling) requires no JS errors on the page. Also without any clue of your code (question 4) we can't say where the problem might be.

Please add the answer to the first question and try to answer to the following ones:

1. Do you ajaxify the RadWindow and/or the RadGrid. If so please go through this topic: How to Use RadWindow with AJAX.

2. Is it possible to provide your ajax settings?

3. Please try to repaint grid's structure after it is loaded using the .repaint() method. Call the below handler OnGridCreated client event:

JavaScript:

function onGridCreated(sender, args){
   setTimeout(function(){
      sender.repaint();
   });
}

If this can't help please elaborate more and provide the needed information in order to replicate the problem on our side.

Regards,
Venelin
Telerik
 

DevCraft Q1'14 is here! Watch the online conference to see how this release solves your top-5 .NET challenges. Watch on demand now.

 
Tags
Grid
Asked by
Vargis
Top achievements
Rank 2
Answers by
Vargis
Top achievements
Rank 2
Venelin
Telerik team
Share this question
or