c# - How to set a Telerik grid to allowing vertical scrolling -


i have gridview , normal windows form can set overflow-y:scroll; , allow me scroll rows , keeping same format. when try telerik grid similar result formatting not stay same. set grid 950px , and first rows correct color format after immediate few rest same page backgroud.

example asp: blue, white, blue, white, correct

telerik: blue, white, blue, white, background color, white, background color, white

is there property need set allow rows in table same format other have? or other ideas on how fix appreciated!

<form id="form1" style="background-color:black; overflow-y:scroll; height:950px"" runat="server"> <div>      <telerik:radscriptmanager id="radscriptmanager1" runat="server">     </telerik:radscriptmanager>      <telerik:radgrid id="missingplugrid" runat="server" width="900px"          backcolor="#0099cc" height="1000px">     </telerik:radgrid>     <br />     <br /> 

try this-

  <clientsettings> <scrolling allowscroll="true" usestaticheaders="true"></scrolling> </clientsettings> 

for reference - http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/scrolling/scrolling/defaultcs.aspx


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -