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

Radgrid with RadTabstrip not rendering the styles of the grid properly

5 Answers 103 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Ramraj
Top achievements
Rank 1
Ramraj asked on 05 Jul 2010, 03:15 PM
Hi,

I have radtabstrip with 2 tabs .Also included radmultipage with 2 pageviews havind grid on each page.

I have set rendering on selected page =true in multipage.

Also i used Enableajaxskinrendering to True

Whne i click the tab each  grid  loads but the grid border and column widths are not rendered properly.

Also i use the below script to avoid postbacks

 

function onTabSelecting(sender, args)

 

{

 

if (args.get_tab().get_pageViewID())

 

{

args.get_tab().set_postBack(

false);

 

}

}


Help me out its urgent.

Thanks

Sathya

5 Answers, 1 is accepted

Sort by
0
Genady Sergeev
Telerik team
answered on 07 Jul 2010, 04:15 PM
Hi Ramraj,

Is the issue reproduced only under IE? Do you have any Themes or custom CSS files included to your aspx page?

Regards,
Genady Sergeev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Ramraj
Top achievements
Rank 1
answered on 08 Jul 2010, 06:08 AM
Hi Genady ,

Am not using custom theme or css,i use office2007 theme for the grids. When i do the postbacks the border of the grid and column widths render properly.

I use IE8 comptibility view.


Regards

Sathya
0
Genady Sergeev
Telerik team
answered on 14 Jul 2010, 09:37 AM
Hi Ramraj,

I've transferred this forum post to a support ticket so that you can attach files

We are not aware of any problems with RadTabStrip and RadGrid. It seems that something is going wrong in your very scenario. Can you please attach your relevant code pages to this ticket so that we can take a look at them. We will do our best in order to fix the issue that you experience as soon as we manage to reproduce it Live URL of your website can also be of help. Thank you.

Best wishes,
Genady Sergeev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Sheetal
Top achievements
Rank 1
answered on 11 Apr 2019, 07:22 AM

This problem occured with me as same

and also the look like that is rad grid not a part of TabStrip and TabStrip Page

0
Vessy
Telerik team
answered on 15 Apr 2019, 03:10 PM
Hi Sheetal,

The faced behavior is related to the fact that the Grid, having width in percent, is placed into initially not visible parent. The easiest way to avoid this behavior is to enable the AutoPostBack property RadTabstrip and set the RadMultiPage's RenderSelectedPageOnly property to True:
<telerik:RadTabStrip ID="RadTabstrip1" runat="server" MultiPageID="RadMultiPage1" AutoPostBack="true">
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" RenderSelectedPageOnly="true"></telerik:RadMultiPage>

The other approach you can use is to assign a handler to the RadTabStrip's OnClientTabSelected and RadWindow's OnClientShow client-side events and call the RadGrid's repaint() method in them. In case this even

If this does not help, I will advise that you move the content of RadWidnow to a separate page and load it via its NavigateUrl property.


Regards,
Vessy
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.
Tags
TabStrip
Asked by
Ramraj
Top achievements
Rank 1
Answers by
Genady Sergeev
Telerik team
Ramraj
Top achievements
Rank 1
Sheetal
Top achievements
Rank 1
Vessy
Telerik team
Share this question
or