i automatically generate the colunmns and rows by using radgrid1.datasource = .......
this works fine and i could see the scroll up down and left right bar. however, when i add in group by expression i don't see it any more. i still could scroll using my scroll button on the mouse but that's it. also i could see the scroll bar at loading when i try to go to the next page. could you help me out please? here is the code of how i add the groupby
radgrid1.datasource = .......
this works fine and i could see the scroll up down and left right bar. however, when i add in group by expression i don't see it any more. i still could scroll using my scroll button on the mouse but that's it. also i could see the scroll bar at loading when i try to go to the next page. could you help me out please? here is the code of how i add the groupby
radgrid1.datasource = .......
RadGrid1.AllowPaging =
True
RadGrid1.AutoGenerateColumns =
True
RadGrid1.AllowSorting =
True
Dim expression As GridGroupByExpression = New GridGroupByExpression
Dim gridGroupByField As GridGroupByField = New GridGroupByField
gridGroupByField =
New GridGroupByField
gridGroupByField.FieldName =
"section"
gridGroupByField.HeaderText =
"Section: "
expression.SelectFields.Add(gridGroupByField)
expression.GroupByFields.Add(gridGroupByField)
RadGrid1.MasterTableView.GroupByExpressions.Add(expression)
RadGrid1.ClientSettings.Scrolling.AllowScroll = True
RadGrid1.ClientSettings.Scrolling.UseStaticHeaders =
True
RadGrid1.DataBind()