Using 2008.1.619.20
I want to make the RadGrid display only 4 rows of data, scroll, and not allow paging. What am I doing wrong? It is displaying about 13 rows of data (bottom pixels of 13th row's data are cut off). The scrollbar is there, but it seems to be ignoring PageSize.
I want to make the RadGrid display only 4 rows of data, scroll, and not allow paging. What am I doing wrong? It is displaying about 13 rows of data (bottom pixels of 13th row's data are cut off). The scrollbar is there, but it seems to be ignoring PageSize.
With Radgrid1
.DataSource = T
.DataMember = T.TableName
.DataBind()
.Columns(0).Visible = False
.EnableViewState = True
.PageSize = 3
With .ClientSettings
.Resizing.AllowRowResize = False
.Scrolling.AllowScroll = True
.Selecting.AllowRowSelect = True
End With
.Height = New System.Web.UI.WebControls.Unit("44px")
.Width = New System.Web.UI.WebControls.Unit("400px")
.ShowHeader =False
.ShowFooter = False
End With